Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed. We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

[Solved] How to turn off notification bell movements?

12 Posts
2 Users
2 Reactions
1,504 Views
Posts: 27
Topic starter
(@yuri-vasilchenko)
Eminent Member
Joined: 3 years ago

Hi!

How to turn off notification bell movements?

 

11 Replies
Astghik
Posts: 6444
Admin
(@astgh)
Illustrious Member
Joined: 8 years ago

Hi @yuri-vasilchenko,

You can use the CSS code below: 

#wpadminbar .wun-bell.wun-has-unread, .wun-bell.wun-has-unread {animation:none !important;}
10 Replies
(@yuri-vasilchenko)
Joined: 3 years ago

Eminent Member
Posts: 27

@astgh

Excellent, thank you!

Right here please write me the code to disable the bell animation in the backend.

(@yuri-vasilchenko)
Joined: 3 years ago

Eminent Member
Posts: 27

@astgh

Unfortunately, this code did not remove the bell animation on the main page of the site. Please help me to the end.

Astghik
Admin
(@astgh)
Joined: 8 years ago

Illustrious Member
Posts: 6444

@yuri-vasilchenko,

You should use the CSS code below: 

#wpadminbar .wun-bell.wun-has-unread, .wun-bell.wun-has-unread {
    animation: none !important;
}

Follow the instructions provided here: https://css-tricks.com/snippets/wordpress/apply-custom-css-to-admin-area/

(@yuri-vasilchenko)
Joined: 3 years ago

Eminent Member
Posts: 27

@astgh But this is the same code you wrote the first time!

Astghik
Admin
(@astgh)
Joined: 8 years ago

Illustrious Member
Posts: 6444

@yuri-vasilchenko,

Follow the instructions provided here: https://css-tricks.com/snippets/wordpress/apply-custom-css-to-admin-area/

You should put it in the other place. But keep all previous codes. 

(@yuri-vasilchenko)
Joined: 3 years ago

Eminent Member
Posts: 27

@astgh

Ok, it got done! )

(@yuri-vasilchenko)
Joined: 3 years ago

Eminent Member
Posts: 27

@astgh

I've disabled the animation on the site in the frontend, but I still have the animation in the admin panel. I would like to disable it too!

Astghik
Admin
(@astgh)
Joined: 8 years ago

Illustrious Member
Posts: 6444

@yuri-vasilchenko,

The solution was already provided: 

add_action('admin_head', 'my_custom_fonts');
function my_custom_fonts() {
   echo '<style>
       #wpadminbar .wun-bell.wun-has-unread, .wun-bell.wun-has-unread {
           animation: none !important;
      }
</style>';
}

You should put the code above in the functions.php file of the currently active theme. 

(@yuri-vasilchenko)
Joined: 3 years ago

Eminent Member
Posts: 27

@astgh

It works! The question is closed. Thank you!

(@yuri-vasilchenko)
Joined: 3 years ago

Eminent Member
Posts: 27

@astgh

I would recommend that you add an option to enable/disable the bell animation directly in the extension's settings.

Share:
Scroll to top