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.