BigCommerce, How to add a custom quick view button -


bigcommerce, how add custom quick view button anywhere other 1 shows on hover in code?

    <div class="productimage quickview" data-product="%%global_productid%%">     %%global_productthumb%% </div> 

it's been 4 months since original post i'm not sure if need anymore, others might find useful.

in categoryproductsitem.html can insert following code

<style>.quickview.yourclass .quickviewbtn{background-color:transparent !important;} .quickview.yourclass{position:relative; display:block; padding:0;}</style><div class="quickview yourclass btn small icon-add cart" data-product="%%global_productid%%" style="display:block !important; visibility: visible;">add cart</div> 

i use give customer ability change quantities in add cart popup(which using quick view one). quickviewcontent.html add in product description if wanted

%%global_quickviewproductdescription%% 

the visibility , block properties important aren't forced hover button visible


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -