Reponse from RankMath: `Hello,
That plugin is essentially turning all pages of your website into a checkout page which our plugin sets to noindex by default.
However, if you would like to override that you can apply the following filter that we also applied on the website you shared in the sensitive data section:
add_filter( ‘rank_math/frontend/robots’, function( $robots ) {
if(is_checkout()) {
$robots[‘index’] = ‘index’;
$robots[‘follow’] = ‘follow’;
}
return $robots;
});
Hope this helps solve your issues.
Don’t hesitate to get in touch if you have any other questions.`