• Resolved agenziae20

    (@agenziae20)


    Hello,

    I am testing woocommerce, wcmp and this interesting plugin.
    WC 4.0.1
    WC Catalog Enquiry 3.2.1
    Storefront theme 2.5.5

    I set the catalog mode and hided the prices, it works great as no price or cart button are displayed in the product page.

    BUT…

    If I scroll down to the bottom of the page, a banner pops up on top of the page reminding me which product I am watching, its price and the Add To Cart button (which works perfectly and can bring me to the checkout page).

    Maybe a function inside Storefront theme or some WC setting? How to hide this?

    Best regards!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @agenziae20, thanks for reaching WCMp Support!!

    Can you please share a page link, so I can help you out.

    Thread Starter agenziae20

    (@agenziae20)

    Thanks for the link. This is a conflict with Storefront theme, our team is checking. Once I have an update, I will let you know.

    Hi @agenziae20, please add this code to the function.php of the current active theme :

    /********** Hide add to cart button from storefont page ***********/
    add_action('wp_enqueue_scripts', 'hide_add_to_cart_storefont', 99);
    function hide_add_to_cart_storefont(){
       $hide_add_to_cart = '
       a.storefront-sticky-add-to-cart__content-button.button.alt {
       display: none;
    }';
       wp_add_inline_style('storefront-woocommerce-style', $hide_add_to_cart);
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘popup with price and add to cart button’ is closed to new replies.