• Resolved rajttn

    (@rajttn)


    First of all, we love your plugin. It is so much better than other popular SEO plugins we tried before. Kudos to that!

    Quick question – We have some pages like “Email newsletter confirmation” and “Successful verification” and it bothers to have a red marked or a grey colored Rank Math column against those pages.

    Is it possible to disable rank math only for a specific few pages?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Rank Math Support

    (@rankmathsupport)

    Hello @rajttn,

    Thank you for contacting Rank Math support.

    You can use and customize this filter to disable the Rank Math content analysis test for those pages:
    https://rankmath.com/kb/disable-seo-content-tests/#multiple-tests

    In the code, you may add a conditional statement to affect those pages only by targeting their page ID.

    Hope that helps.

    Thread Starter rajttn

    (@rajttn)

    Thank you for the reply.

    We went through the link you shares, however it is to disable individual tests.

    Is it possible to disable Rank Math completely as a whole for certain pages/posts? Like, not show any value in the Rank Math column against a page/post at all

    • This reply was modified 1 year, 3 months ago by rajttn.
    Plugin Support Rank Math Support

    (@rankmathsupport)

    Hello @rajttn,

    We have a pending feature for this in our repository that is currently on hold. If we decide to implement this in the future, we’ll let you know of the same.

    Thank you.

    Hi, love your plugin too. I was searching for solution and it’s here:

    https://rankmath.com/kb/how-to-disable-all-generated-seo-tags/

    Bit modified version in my case would:

    function rankmath_disable_features() {
    	if ( strpos( $_SERVER['REQUEST_URI'], '/newsletter/' ) !== false ) {
    		remove_all_actions( 'rank_math/head' );
    	}
    }
    add_action( 'wp_head', 'rankmath_disable_features', 1 );
    Plugin Support Rank Math Support

    (@rankmathsupport)

    Hello @mcdeth,

    We are glad you made it work.

    We are here if you need further assistance.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Is it possible to disable Rank Math for certain pages/posts?’ is closed to new replies.