When you press add to cart from the collection, I am getting a pop up but I want a mini product page below (see Images) How can I do this?
Store url: www.lachique.co
Thank you
When you press add to cart from the collection, I am getting a pop up but I want a mini product page below (see Images) How can I do this?
Store url: www.lachique.co
Thank you
yes, whenever you press add to cart/quickview I want at a product page coming from the side like: https://www.hamptonlaneco.com/
Navigate online store → theme → edit code.
Open theme.liquid and then put following code in {% style %}{% endstyle %}
{% if template.name == ‘product’ %}
.product-block–sales-point {
display: none !important;
}
.shopify-app-block {
display: none !important;
}
.product-block–price + div {
display: none !important;
}
{% endif %}