• Resolved jason9j

    (@jason9j)


    My store has only one category. Therefore, the category base required by WooCommerce is unnecessary, adding length to the URL for no purpose. Additionally, when breadcrumbs are used, clicking on either the shop base or category base will show essentially the same thing at two separate URLs, so it is confusing and pretty much duplicate content.

    eg.

    mystore.com/shop/ and mystore.com/shop/product-category list the same products, because there is only one category. Is is essentially a duplicate page, which is confusing, especially if people are looking at a breadcrumb on a single product page that looks like this: mystore.com/shop/product-category/product-name. It implies that the customer can click on ‘shop’ or ‘product-category’ and see different things, but they list the same products, because there is only one category.

    Furthermore, I want to concentrate all my SEO efforts on one ‘category’ page, not two (a shop page listing the products from only one category is essentially a duplicate of the product category page).

    How do I natively bypass either the shop base or the category base so my shop and product category page are the same URL? Such as:

    mystore.com/shop/ (with no mystore.com/shop/product-category)
    or mystore.com/product-category (i.e. category name as the shop base)

    I’d prefer not to mess with 301 redirects in case I ever needed to create another category sometime in the future.

    Many stores sell only a few products, often all the same category. Surely there is a native solution for this?

    Any help would be appreciated.

    Thanks.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi @jason9j

    I understand that you want to your shop page and product category page to be the same URL, because there is only one category.

    You can go to Dashboard > Settings > Permalinks > Product Permalinks, and choose the “Shop base” option. That way the category will no longer be there in the URL. Your URL will be like mystore.com/shop/

    You can read more on this here: https://woocommerce.com/document/permalinks/#section-3

    Thread Starter jason9j

    (@jason9j)

    Hi Margaret – thank you, I have made that change. That takes care of the product URL.

    But that still leaves a shop page and a category page that are separate to each other and essentially duplicated. I would need the shop page to be the product category page.

    The pages mystore.com/shop/ and mystore.com/shop/product-category both still exist independently, and both are accessible from product page breadcrumbs, so the issues I mentioned still exist.

    Unfortunately. changing the permalink structure doesn’t remove the mention of the product category from the product breadcrumbs, and doesn’t merge the product category URL with the shop URL…

    • This reply was modified 2 years, 3 months ago by jason9j.
    Plugin Support Sandip Mondal – a11n

    (@sandipmondal)

    Hey @jason9j,

    changing the permalink structure doesn’t remove the mention of the product category from the product breadcrumbs, and doesn’t merge the product category URL with the shop URL…

    There is no way to “merge” the 2 URLs into one such that one page is removed automatically.

    You can do this by redirecting one page to the other but I can see you mentioned – you do not want to go with this route as you might add more categories in the future.

    Here’s what I’d recommend:

    – You add the redirect, for now, to make it work per your goal and then you can remove the redirect in the future in case you add more categories
    – And for the breadcrumbs, please share your site’s URL, we will be happy to take a look and work on a CSS solution to hide the breadcrumbs from the pages

    Thanks! ??

    Thread Starter jason9j

    (@jason9j)

    Hi @sandipmondal

    Thank you very much for your reply.

    I guess I will do the redirect if it can be easily reversed in the future in terms of search engine propagation.

    Yes, I would love to know the CSS to hide certain elements from the breadcrumbs (I assume it will be some sort of display:none with an nth-child/of-type, etc, formula?)

    My site is under construction, but the HTML and CSS is as follows:

    <nav class="woocommerce-breadcrumb">
    ::before
    <a href="https://mysite.com">Home</a>
    "&nbsp;/&nbsp;"
    <a href="https://mysite.com/shop/">Shop</a>
    "&nbsp;/&nbsp;"
    <a href="https://mysite.com/product-category-base/product-category/">Product Category Name</a>
    "&nbsp;/&nbsp;Product Name"
    </nav>
    .woocommerce .woocommerce-breadcrumb {
        zoom: 1;
        margin: 0 0 1em;
        padding: 0;
        font-size: .92em;
        color: #777;
    }
    main, nav {
        display: block;
    }
    *, :after, :before {
        box-sizing: inherit;
    }
    
    .woocommerce .woocommerce-breadcrumb::after, .woocommerce .woocommerce-breadcrumb::before {
        content: ' ';
        display: table;
    }

    If I decided to opt for the other way around: use the category name as the shop base (instead of ‘shop’ to replace the category name), could you possibly let me know how you’d do that? So, overall that would give me two options:
    Option 1: mysite.com/shop/product-name
    OPtion 2: mysite.com/category-name/product-name

    Many thanks again for all your help.

    Plugin Support con

    (@conschneider)

    Engineer

    Howdy,

    Yes, I would love to know the CSS to hide certain elements from the breadcrumbs (I assume it will be some sort of display:none with an nth-child/of-type, etc, formula?)

    Something like that :).

    My site is under construction, but the HTML and CSS is as follows:

    Could you lift the under construction for a bit so we can access the site?

    If I decided to opt for the other way around: use the category name as the shop base (instead of ‘shop’ to replace the category name), could you possibly let me know how you’d do that?

    I would try and use something like: https://www.ads-software.com/plugins/redirection/ to manage the redirection of your URL’s.

    Kind regards,

    Thread Starter jason9j

    (@jason9j)

    Hi @conschneider – thanks for your reply.

    Would you be able to show me the CSS based on the HTML and CSS I provided above? It’s taken verbatim from my site. If not, let me know and I’ll arrange a login for you to preview and PM you.

    Very much appreciated.

    Plugin Support Kaushik S. a11n

    (@kaushiksomaiya)

    Hi there!

    WooCommerce breadcrumbs don’t have any HTML element containing the breadcrumb separator.

    As a result, if we hide the category using CSS, it will appear as below with an additional separator:

    Home / Shop / / Product Name

    To solve this, you can change the breadcrumbs structure to include HTML for separators as follows: (This can go into your theme’s function.php file)

    
    add_filter( 'woocommerce_breadcrumb_defaults', 'jk_woocommerce_breadcrumbs' );
    function jk_woocommerce_breadcrumbs() {
        return array(
                'delimiter'   => '<span class="woo_bdseparator"> / </span>',
                'wrap_before' => '<nav class="woocommerce-breadcrumb" itemprop="breadcrumb">',
                'wrap_after'  => '</nav>',
                'before'      => '<span class="woo_bdlink">',
                'after'       => '</span>',
                'home'        => _x( 'Home', 'breadcrumb', 'woocommerce' ),
            );
    }
    

    Then you could target the breadcrumb link that you need to hide:

    
    .woocommerce-breadcrumb .woo_bdlink:nth-of-type(5), .woocommerce-breadcrumb .woo_bdseparator:nth-of-type(6){
    	display:none !important;
    } 
    

    I hope this helps! ??

    Thread Starter jason9j

    (@jason9j)

    Hi @kaushiksomaiya

    What you posted works perfectly – it is exactly the right solution.

    Thanks you very much to you and everyone else who helped me with this.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Avoid duplication – Make shop base and product category the same URL?’ is closed to new replies.