Search Divi Cart Pro Documentation
Search for answers or browse our knowledge base.
How to disable the quick view feature in DCP WooCommerce Products on mobile devices only?
To disable the quick view feature in DCP WooCommerce Products on mobile devices only, you can achieve this by adding the following CSS code in Divi Theme Options.
@media screen and (max-width: 767px) {
.dcp_woo_products .dcp_single_woo_product_quickview_wrapper {
display: none;
}
}