Ability to disable pop up notifications when creating/copying/deleting a project or task

Can you move the notifications to the right side? So that it’s not blocking the left panel.

2 Likes

Please prioritise this! It would solve a lot of UXUI problem and increase speed. Just put the notifications to the bottom right corner. Thanks!

3 Likes

My team finds the toasts extremely annoying.

2 Likes

Has this been resolved?
I need to stop this pop up as well.

2 Likes

Please add a feature to stop this.

2 Likes

This is absolutely a show stopper. We have a lot of rules and you must wait 30 seconds for these to go away. They appear over critical parts of the UI, and I cannot view my tasks, create new ones, or navigate to different projects.

3 Likes

I believe I’ve commented on a thread about these pop up notifications in the past, but jumping in again because they are incredibly disruptive and there’s still no way to disable them.

3 Likes

My team is refusing to use rules because of these. How has this issue been ignored for this long?

1 Like

Hi, has this issue been resolved? Is there any way to disable these popups? They are needlessly distracting.

3 Likes

Why has this not been resolved. I have tried the workaround but it only works for one workspace at a time so you have to set up multiple

1 Like

I am honestly baffled that this issue has not been addressed or resolved after 5 years. The entire left side of my screen is blocked by popups when creating new tasks. They do not disappear, and remain there until I actively close them. I’d rather use my time to do something productive then to clean up these obstructions. t’s a burden and leaving these popups there serves no purpose whatsoever.

4 Likes

Jumping in to boost this yet again. There’s no reason for these to be so disruptive. The “undo” option might be useful to those new to Asana in case of duplicate tasks, etc., but at the very least we should have an option within our settings to control the time they remain visible and/or turn them off completely.

1 Like

Reminder for everyone just viewing this, if it bothers you too please click the VOTE button at the top. The more votes there are the more likely Asana will be to address something.

The pop-ups bother me too! Also very annoying they no longer disappear on their own like Remco mentioned. : (

How about zero seconds?

image

4 Likes

I’m sad to say that as of a few days ago, the TamperMonkey script that moved the pop-ups to the right, or disabled them, has stopped working. I’m not familiar enough with the CSS to be able to say why. The “manager” tags that it was using seems to be missing now. :frowning:

So, people asking since 2018, and now the one workaround I had, at least, has broken.

Ok, I was able to experiment with it. Apparently they’ve made some changes to the site code. The old class for the Toasts was called ToastManager, and they changed it to ToastStateManager-group.

This TamperMonkey Code will once again move it to the right:

// ==UserScript==
// @name Move Asana Popups Right Fixed After Change
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match app.asana.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=asana.com
// @grant none
// ==/UserScript==

(function() {
‘use strict’;
var manager = document.getElementsByClassName(‘ToastStateManager-groups’); manager[0].style.left = “auto”; manager[0].style.right = “0px”;
})();

1 Like

One added irony is that because this thread was originally started in 2018, and the page loads content dynamically from the bottom up, it now takes forever on a slow connection to scroll up to the top of the page to find the vote button. There’s been so many people commenting and asking for this over the years that it’s actually becoming a bit difficult to vote for it.

What product management vision is so obsessed with Toasts that you won’t just add the ability to turn them off, set their position, or turn them off per rule?

If it helps, yes, this is a bug that affects mostly hardcore users, because we’re the ones using rules deeply enough to be swamped by Toasts on every action. However:

  • The hardcore community are your Mavins, the deep divers who advocate for your product the most.
  • At least three people in the comments above have stated that the Toasts have discouraged their team from using rules, so it’s preventing people from becoming deep users.
  • The functionality is already there to adjust the duration of the Toasts. Why is 15 seconds the shortest? There should be a 0 seconds, 1 second, 3 seconds, 5 seconds, and 10 seconds. This should be a trivial change since the code is already implemented.
2 Likes

You can click the title to immediately reach the purple Vote button.

Thanks,

Larry

1 Like

I added more stuff and mine works now.
I suspect some of my lines are superfluous. I used the “Inspect” tool of Amino to mouse over the popup bits.

.TipToast.ToastContainer {
display: none;
}

.ToastManager {
display: none;
}

.TipToast.ToastNotification {
display: none;
}

.div.ToastNotificationContent {
display: none;
}

.ToastNotificationContent {
display: none;
}

div.ToastContainer.SuccessToast {
display: none;
}

Updated my original post from a few years back to handle hiding these.

New CSS is as follows:

.ToastManager,
.TipToast.ToastContainer,
.ToastNotificationContent,
.ToastSlideInTransition{
    display: none;
}

Cheers. Thanks @Ryan_Levander for reminding me to update this.

1 Like