Thumbnail

Please post your issues and questions about One Page Checkout for Virtuemart 2 to this forum.

Thumbnail

Postby ferdzpalaspas@.....com » Mon Sep 29, 2014 6:09 pm

Hi,

why the thumbnail is not working in cart page?in your demo, there's a thumbnail..why not showing in my website?

please check the attached file for the screenshot..

tnx tnx
Attachments
Untitled-2.jpg
Untitled-2.jpg (56.23 KiB) Viewed 8914 times
ferdzpalaspas@.....com
 
Posts: 8
Joined: Sun Mar 18, 2012 12:08 pm

Re: Thumbnail

Postby admin » Thu Oct 02, 2014 2:17 am

hello, please proceed to virtuemart -> configuration -> checkout -> show images at checkout.

let us know if this helped. we try to follow VM config as much as possible (SSL, TOS settings, registration and other..)

best regards, stan
admin
Site Admin
 
Posts: 2708
Joined: Wed Jan 06, 2010 11:43 pm

Re: Thumbnail

Postby ferdzpalaspas@.....com » Thu Oct 02, 2014 10:57 am

thanks..its working...

Last question, how to edit the size of the thumbnail?
ferdzpalaspas@.....com
 
Posts: 8
Joined: Sun Mar 18, 2012 12:08 pm

Re: Thumbnail

Postby admin » Mon Oct 06, 2014 8:17 pm

hello, this has to be done as a theme modification, open this file:
\components\com_onepage\themes\YOUR OPC THEME\overrides\basket.html.php

and see a line like this:
Code: Select all
<div class="op_col1"><?php echo $this->op_show_image($product['product_full_image'], '', 40, 40, 'product'); ?>&nbsp;</div>


you can update it to :
Code: Select all
<div class="op_col1"><?php echo $this->op_show_image($product['product_full_image'], '', 150, 150, 'product'); ?>&nbsp;</div>


which will give you 150px x 150x image. If you want to have a fixed width with dynamic height (even larger than 150px), you can use
Code: Select all
<div class="op_col1"><?php echo $this->op_show_image($product['product_full_image'], '', 150, 0, 'product'); ?>&nbsp;</div>


it's recommended that you theme directory is renamed (you can use a button within opc display tab) so it doesn't get overwritten on opc update)

best regards, stan
admin
Site Admin
 
Posts: 2708
Joined: Wed Jan 06, 2010 11:43 pm


Return to One Page Checkout for Virtuemart 2