Search Divi Cart Pro Documentation
Search for answers or browse our knowledge base.
How to disable quick view option on mobile?
Please add the following CSS code in Divi Theme Option to make the quick view option disable on mobile devices.
@media screen and (max-width: 767px)
{
.dcp_single_woo_product_quickview_wrapper
{
display: none;
}
}