Site logo

Archived topic

I'd like the Add to cart panel to show on homepage

5 replies · Started by Adrien on January 8, 2021

Viewing posts 1–6 of 6

Dear GP Team,

If you check my product cat archive page (link enclosed /product-category/bracelets/)

When I click Add to cart I see the Add to cart panel showing on the top.

I would like to know if it is possible to have the same on the home page when I click a to cart?

I'm using Niche Theme.

Thank you very much. Best, Adrien

Hi there,

not sure 100% if this will work but try adding the following PHP Snippet to your site:

add_filter( 'generate_woocommerce_show_add_to_cart_panel', function( $show ) {
    if (is_front_page()) {
        return true;
    }

    return $show;
} );

Hi David. Thank you! It works perfectly. Appreciate your help as always.

Glad to be of help

I am trying the same, but appears empty

Hi Jose,

Could you open a new topic and link us to your site?

Thanks!

This archived topic is closed to new replies.