• Resolved bluefusion

    (@bluefusion)


    My plugin install page is unusable as its covered in a green overlay with a link to upgrade to WP Mail SMTP premium plugin. I cannot use the plugin page and there is no X to remove it.

    What is happening? Anyone else seeing this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Victoria Sakal

    (@sakalvictoria)

    Hi, @bluefusion!

    Thanks for reaching out and I’m sorry for the trouble!

    It looks like some other plugin includes their CSS globally (on all admin pages), and it causes the conflict.

    To prevent this conflict, you can use the next code snippet:

    add_action( 'admin_head', function () {
      ob_start();
      ?>
      <style>
       body.plugins-php .wp-list-table.plugins tr[data-slug="wp-mail-smtp"] .row-actions span.pro {
        position: static !important;
        display: inline !important;
        background: none !important;
       }
      </style>
      <?php
      echo ob_get_clean();
    } );

    You’ll need to insert this code snippet to your functions.php file. Here is a guide on how to do this.

    Kind regards,

    Thread Starter bluefusion

    (@bluefusion)

    Thanks, that has worked.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘plugin install screen completely covered with advert for WP Mail SMTP’ is closed to new replies.