Webpushr bell Show On Wordpress Dashboard

Hi!

Two days ago, I moved to one signal to webpushr but I am confused about how to remove my existing subscriber.

The second question is why the subscription button shows me on my WordPress dashboard on universecover?

WAITING FOR YOUR RESPONSE

Hi,

You cannot delete your old subscribers. Your old subscribers will automatically transfer to Webpushr upon their first visit to your website after Webpushr is installed.
To remove the Webpushr subscription bell from your WordPress dashboard, please use the following WordPress hook function in your theme’s function.php file

//Hide Webpushr opt-in prompt from admin panel  
function hide_webpushr_prompt(){
   ?><style>#webpushr-prompt-wrapper,#webpushr-bell-optin{display:none}</style><?php 
}
add_action('admin_head', 'hide_webpushr_prompt');

Without adding code, can I remove this bell on the WordPress dashboard?