• Resolved irbis16

    (@irbis16)


    Hi!
    I need canonical url for pagination pages https://www.gubskiy-kirpich.ru/shop/*/* – main shop page url without /page/2, /page/3 etc.
    I used this code
    But it not works

    function yoast_seo_canonical_change_woocom_shop( $canonical ) {
    	if ( !is_shop() ) {
    		return $canonical;
    	}
        return get_permalink( woocommerce_get_page_id( 'shop' ) );
    }
    add_filter( 'wpseo_canonical', 'yoast_seo_canonical_change_woocom_shop', 10, 1 );

    I understand that Google use canonical like prev, next. I need main shop page url canonical for other search engine.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘canonical for shop page pagination’ is closed to new replies.