nofollow doesnt work

#367546
Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,

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

    Our plugin sets the pages like My Account, Cart, and Checkout as Noindex as these pages are not supposed to be indexed.

    If you want to set the My Account page as Index then please use the filter given below:

    add_filter( 'rank_math/frontend/robots', function( $robots ) {
    	if ( is_account_page() ) {
    			remove_action( 'wp_head', 'wc_page_noindex' );
    			return [
    				'index'  => 'index',
    				'follow' => 'follow',
    			];
    		}
    	
    	return $robots;
    });

    Here is how to add a filter to your site: https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Hope this helps. Let me know if you need any other assistance.

    So this setting only happens for those pages… on all other pages if i have selected nofollow it should work right?

    Hello,

    Yes, all other pages will follow the settings that you choose in the Advanced tab of the meta box.

    Hope this helps. Let us know if you need any other assistance.

    Thanks.

    thank u!

    Hello,

    Glad that helped.

    Please feel free to reach out to us again in case you need any other assistance.

    We are here to help.

    Thank you.

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

The ticket ‘nofollow doesnt work’ is closed to new replies.