• I created custom links for categories. But the plugin does not see them and all the old woocommerce categories in noindex have child categories. What to do? There is an index in the settings.

Viewing 1 replies (of 1 total)
  • Thread Starter Alexey Sotnikov

    (@so1omon)

    
    add_filter('wpseo_robots', 'yoast_no_home_noindex', 999);
    function yoast_no_home_noindex($string= "") {
        if (is_archive()) {
            $string= "index,follow";
        }
        return $string;
    }

    I kind of found a solution. I don’t know if it’s correct, but it works.

Viewing 1 replies (of 1 total)
  • The topic ‘BUG noindex in sub-categories woocommerce’ is closed to new replies.