• Resolved giannis333333

    (@giannis333333)


    Hello again .I have a minor problem on backend with the popup error message appearing all time.
    The message is the following: Why IMDb Connector plugin does not work on your website
    and while i press Hide this message button when i go to dashboard it is showing all time.
    We replaced the Api in code with mine as you remember is there a way this message to stop showing?

    Thanks a lot Kolja!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author thaikolja

    (@thaikolja)

    Hi @giannis333333,

    Please place the following code into your functions.php of your active theme. That should solve it. I don’t know why the “Hide” button doesn’t work with some users.

       function remove_imdb_connector_banner() {
    	   ?>
    	   <style type="text/css" media="screen">
    		   #imdb-connector-api-key-alert {
    			   display: none !important;
    		   }
    	   </style>
    	   <?php
       }
       
       add_action("admin_head", "remove_imdb_connector_banner");
    Thread Starter giannis333333

    (@giannis333333)

    Good morning ok Kolja i will do this and ill inform you if anything occurs.Have a nice day !

    Thanks so much! It works to me too.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Issue with popup message’ is closed to new replies.