I did not want to be limited to using the quickview the way they wanted us to use it... quickview button appearing over image... i feel its confusing, and the customer does not know the difference between clicking the button "quickview" and clicking the image... I asked support if I could just make my own quickview button (they were no help at all in this regard, though their refusal to give me the code helped in a round about way)
Anyway, the code for making your own quickview button is EXTREMELY simple.
Just make a button or a div and use the following for its action:
example:
Now I can have a button that says "quick view" or anything else i want it to say. This also has the added benefit of getting rid of the "top link" making your page go back up to the top whenever the quickview is pressed.
To get the quickview to not show up on your thumbnails anymore, simply replace:
With:
Anyway, the code for making your own quickview button is EXTREMELY simple.
Just make a button or a div and use the following for its action:
Code:
onclick="open_product('product.asp?itemid=[catalogid]&gclid=1&qv=1&'); return false;"
Code:
<button type="submit" class="positive" onclick="open_product('product.asp?itemid=[catalogid]&gclid=1&qv=1&'); return false;"><img src="assets/images/designelements/icons/cart_go.png" alt=""/> Quick View</button>
To get the quickview to not show up on your thumbnails anymore, simply replace:
Code:
<img src="thumbnail.asp?file=[THUMBNAIL]&maxx=150&maxy=0" align="middle" border="0" alt="[name]" >
Code:
<img src="thumbnail.asp?file=[image1]&maxx=150&maxy=0" align="middle" border="0" alt="[name]" >
Comment