Liquid error (sections/product-template line 7): Could not find asset snippets/preorder-now-collection-item.liquid
Nowadays everyone prefers the responsive website which can be easily used in small devices like tablets, and mobiles. Online shopping websites are no exceptions.
And being a BigCommerce design and development services you’re responsible to improve shoppers experience while they are using responsive online shopping website. One of the most painful things are the modal popups in smaller devices. For example, quickview popup, add to Cart popup and Gift certificate popup in BigCommerce. These popups should be disabled in small devices to improve the shopper’s experience while they are shopping.
Let’s talk about how to hide each popup in BigCommerce. First of all download the theme backup, just to be safe. To do this go to your admin panel, go to design and click on download theme.
Write below css code to your mobile specific css or the media query targeting the small screens.
[css]
.prevbtn
{
display:none !important;
}
[/css]

Hiding quick view popup
In your mobile specific css or the media query targeting the small screens, just paste the below code. [css] .QuickViewBtn { display:none !important; } [/css]Hiding Gift certificate popup
Go to admin area of your bigcommerce, then click on the design which is on the right top of the admin area. There you will find the Edit HTML/CSS, click on it and look for “PurchaseGiftCertificate.html” In that panel, find the code shown in below screen shot and add a unique class (for example “prevbtn”) to the preview button.