Okay
  Public Ticket #2958675
woocommerce pop up
Closed

Comments

  •  2
    Teatone started the conversation

    Hi my first post to here I'm not a web developer or designer but need help regarding the woo commerce pop up. I would like to keep the add to basket link but disable the more information link which brings it back to the product page (which I don't want). I believe this is possible with just CSS but I don't know the code to put in also is there a way I can create the pop-up to work from  a menu link? Hope someone can help thank you in advance

  •  2,967
    Andrew replied

    Hello Teatone,

    The following CSs might help.

    body .nectar-quick-view-box .nectar-full-product-link {
        display: none;
    }
    

    I am afraid it might not be possible to show the popup from a menu item as the markup is different.

    Regards,

  •  2
    Teatone replied

    Thank you so much Andrew it's so nice to see something work :-) I can get round the menu popup if I can disabled the "add to basket" and product image link, so it's just the popup link that is showing. If you don't mind helping with this too please that will be it :-)  I have add an image to quickly show what I am after, as I'm not sure I have explained it right (so I hope it helps).  I believe it's css   and once again thank you.

    Kind regards

  •  2,967
    Andrew replied

    Hello again,

    The following CSS might help.

    .products li.product.minimal [data-nectar-quickview=true] .add_to_cart_button {
        display: none;
    }
    .woocommerce ul.products li.product a {
        pointer-events: none;
    }
    

    Regards,