• Resolved mareepotd

    (@mareepotd)


    Is there anyway to change the product catalogue page to display like the shop page does?

    I’ve created a new page for each shop category and inserted the woocommerce product catalogue block but I hate the look of it. See below…

    /plants/

    I would love the product catalogue to display like the shop page?

    /shop/

    Any help would be amazing ??

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

Viewing 8 replies - 1 through 8 (of 8 total)
  • Kuldeep

    (@soberbanda)

    Thread Starter mareepotd

    (@mareepotd)

    Thanks for that ??

    I had a look and installed it, it did nothing lol. Had a look at the link above and it looks like it gets rid of the shopping cart altogether which is not what I want. I will be selling online and like the look of the SHOP page but want to duplicate this page and only list particular categories…like you would when you create a page and add the woocommerce product category widget and select the category you want BUT I want it to look like the shop page.

    Kuldeep

    (@soberbanda)

    Sorry for that ??

    Maybe this will be helpful? : https://www.ads-software.com/plugins/duplicate-page/

    Let me know!

    Thread Starter mareepotd

    (@mareepotd)

    Good thinking and I already have that installed BUT is there a way in the SHOP page to only display a particular category of products??

    In the theme woocommerce settings its either products, categories or both, but not a particular category????

    Thread Starter mareepotd

    (@mareepotd)

    So that didn’t work anyway! lol

    Kuldeep

    (@soberbanda)

    @mareepotd Try this:

    add_action('pre_get_posts','shop_filter_cat');
    
     function shop_filter_cat($query) {
        if (!is_admin() && is_post_type_archive( 'product' ) && $query->is_main_query()) {
           $query->set('tax_query', array(
                        array ('taxonomy' => 'product_cat',
                                           'field' => 'slug',
                                            'terms' => 'Candies'
                                     )
                         )
           );   
        }
     }

    Note – This will display products with product category as ‘Candies’

    Let me know ??

    Thread Starter mareepotd

    (@mareepotd)

    Only just seen your reply…I found a section where I could turn off the add to cart and star ratings whilst I was building the page again, not sure if that appeared because of the YITH plugin but I then ended up just copying/adding custom css for the sale circle to move to the top and it’s worked a treat ??

    Thanks for your suggestions and help ??

    Kuldeep

    (@soberbanda)

    @mareepotd Glad it was sorted ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Shop page to display as product catalogue page’ is closed to new replies.