• This code:

    .wrap iframe, .wrap a[target="_parent"] {display: none;}

    From wp-content/plugins/seo-by-rank-math/includes/modules/version-control/assets/version-control.css

    Is making a mess on the backend. It hides the Update Plugins completion page, since that’s an iframe. It also hides some plugin update notification links that open in target=”_parent”.

    I’ve overridden it with my own code to display

    .wrap iframe, .wrap a[target="_parent"] {display: inline}

Viewing 2 replies - 1 through 2 (of 2 total)
  • It’s breaking other plugins as well, including FacetWP. @rankmath Please make sure your CSS selectors are narrowly targeted, to prevent similar issues.

    Before:

    .wrap iframe, .wrap a[target="_parent"] {display: none;}

    After:

    
    body.rank-math-page .wrap iframe,
    body.rank-math-page .wrap a[target="_parent"] {display: none;}
    
    • This reply was modified 5 years, 1 month ago by Matt Gibbs.
    Plugin Author Rank Math SEO

    (@rankmath)

    Hello @razorfrog & @mgibbs189

    Thank you for contacting the support and sorry for the issue you are facing.

    Please update to the latest version of the plugin, 1.0.39

    That should fix the issue.

    Let us know if it doesn’t.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Backend CSS hides iframes/links’ is closed to new replies.