Search Divi Cart Pro Documentation
Search for answers or browse our knowledge base.
How to disable quick view feature on mobile in Divi cart pro.
To hide the quick view feature on mobile add the below CSS in Divi Theme Options.
Move to WP admin >> Divi >> Theme Options >> Custom CSS >> add the below CSS.
@media screen and (max-width: 767px)
{
.dcp_woo_products.dcp_single_woo_product_quickview_wrapper {
display: none;
}
}