Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #738413

    Hello,

    I do not want search engines indexing the shop page on my site, how can I remove the /shop/ page in woocommerce? Or not remove it rather hide it or disable it, I do not your the page at all.

    Thanks

    Graham

    #738423

    Hey Graham!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_set_follow','avia_set_nofollow');
    function avia_set_nofollow(){
    if(is_shop()){
    $meta = '<meta name="robots" content="noindex, follow" />' . "\n";
    }
    return $meta;
    }

    Cheers!
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.