Urgent – Noindex Issue with Rank Math

#576098
  • Resolved Anonymous
    Rank Math free

    I have an urgent issue with your plugin. All pages on my site have switched to noindex, despite being set to index. I’ve checked settings and deactivated other plugins, but the problem persists. Could you assist me in resolving this?

    https://revi-care.it/

    Thank you,

Viewing 1 replies (of 1 total)
  • Hello,

    Thank you for contacting us and sorry for any inconvenience that might have been caused due to that.

    We’ve checked your site and almost all of your pages contain the “Add to Cart” button. It’s likely that they are getting flagged as a cart page on the website and our plugin applies the noindex by default to those.

    In this case, please try to add the following filter on your site and see if that works for you:

    add_filter( 'rank_math/frontend/robots', function( $robots ) {
        if( is_cart() || is_checkout() ) {
            $robots['index'] = 'index';
        }
        return $robots;
    });
    

    Here’s how you can add filter/hook to your WordPress site: https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Let us know how it goes. Looking forward to helping you.

    Thank you.

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

Viewing 1 replies (of 1 total)

The ticket ‘Urgent – Noindex Issue with Rank Math’ is closed to new replies.