Removing SEO score from specific pages

#151206
  • Resolved Oleg Abramov
    Rank Math free

    Hello, I have in my website specific pages, where I would like to remove SEO score, as this pages are in some sort specific, without any information. Is it possible somehow to do this?

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hello,

    Thank you for contacting Rank Math and bringing your concern to our attention.

    Yes, you can remove SEO scores from specific pages and posts by following these steps.

    Please head over to Pages > All Pages > Edit > Rank Math SEO > Advanced > Show SEO Score on Front-end (Turn Off).

    Here is the screencast:
    https://i.rankmath.com/0Q7dxZ

    If the Advanced button is not showing, please make sure your Rank Math is already set to Advanced Mode in WordPress Dashboard > Rank Math > Dashboard
    Easy to Advanced Mode

    I hope that helps. Thank you, and please don’t hesitate to contact us if you need further assistance.

    Hello, thanks for reply.
    When I’m trying to switch between Easy mode and Advanced mode nothing happens, but it seems advanced mode already turned on.
    https://ibb.co/bby1Fz9

    But if I’m viewing advanced section in page section I can’t see this Show SEO Score on Front-end (Turn Off) option.

    Maybe I’m missing something?

    Plugin version: 1.0.57.1

    Here is screenshot of advanced mode in post/page section
    https://ibb.co/7VLL4wK

    Hello,

    Thank you for that information, and sorry for the delay.

    Assuming you are already using the latest version of Rank Math, if it’s not showing on your pages, could you please make sure that the Show SEO Score to visitors is already enabled and the Pages is checked in SEO Score Post Types in Rank Math > General Settings > Others?
    SEO Score

    I hope that helps. Thank you, and looking forward to your update.

    Hello, Reinelle,

    sorry for my poor explaining, probably we are talking about two different things 🙂
    What I had in mind, is how to remove pages SEO score from RankMath (or how to make system to ignore them).
    For example, I have empty page for team member, there is no data there, no keywords and etc… Naturally SEO score on this pages are +/- 0/100 and on SEO Analysis this affects as critical and should be fixed. In Analytics section in overall optimization it also shows quantity of this pages
    https://ibb.co/886pnxN
    Is there way in RankMath to ignore this specific pages?

    Hello,

    Thank you for keeping in touch and explanation.

    If you want to disable from any specific post/page, you can use the following code snippet.

    Note: Please add required post/ page IDs and don’t forget to remove IDs (244, 232, 2)

    You can check screencast how you can check your post/page IDs.
    https://www.loom.com/share/14b999b2a1874730b9276447b7e44643

    Please place it your Themes > Functions.php

    // Disable Rank Math SEO Score
    function RM_disable_seo_score_admin(){
    	GLOBAL $post;
    	// Add your post/page ID's here to Disable SEO score
    	$excludeids = array(244, 232, 2);
    	if (!empty($post->ID) && is_numeric($post->ID) && in_array((int)$post->ID, $excludeids)) {
    		return false;
    	} else {
    		return true;
    	}
    }
    add_filter( 'rank_math/show_score', 'RM_disable_seo_score_admin' );

    Moreover, if you want to disable the Rank Math SEO meta box on a specific page or post. You can follow the steps in the above screencast.

    Hope that helps, and please do not hesitate to let us know if you need our assistance further.

    Looking forward to helping you. Thank you.

    thanks!

    Hello,

    We are super happy that this has resolved the issue. If you have any other questions in the future, know that we are here to help you.

    If you don’t mind us asking, could you please leave us a review (if you haven’t already) on https://wordpress.org/support/plugin/seo-by-rank-math/reviews/#new-post about your overall experience with Rank Math? We appreciate your time and patience.

    If you have another question in the future, please feel free to create a new forum topic, and it will be our pleasure to assist you again.

    Thank you.

Viewing 8 replies - 1 through 8 (of 8 total)

The ticket ‘Removing SEO score from specific pages’ is closed to new replies.