change hidden products to dofollow
-
Hello, when the product is withdrawn from sale, I want to set it as hidden. Unfortunatelly, rank math sets noindex and nofollow. There’s no point in nofollow, so I tried changing robots with functions.php, in this case I tried changing all follow links for testing purpose
add_filter( 'rank_math/frontend/robots', function( $robots ) {
$robots["index"] = 'index';
$robots["follow"] = 'follow';
return $robots;
});No changes, this snippet however:
add_filter( 'rank_math/frontend/robots', function( $robots ) {
$robots['index'] = 'index';
$robots['index'] = 'index';
return $robots;
},999 );It adds additional robots:
<meta name=”robots” content=”noindex, nofollow, follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large”/>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.