How to change mini thumbnail image size?

How do we change the mini thumbnail sizes? These are the thumbnails under the product image.

I don't see it in the Admin area.

I think this should be a feature in the admin but It is actually quite easy to change in the template code.



[font=Arial][size=4]Change the variable [/size][/font][font=Arial][size=4]$th_size[/size][/font][font=Arial][size=4] in customer/views/products/components/product_images.tpl.[/size][/font]

Thanks for the reply!



I changed the following value to 60 but the mini thumbs are still microscopic, {assign var=“th_size” value=“30”}

Directory

/skins/basic/customer/views/products/components

You need to clear cache probably admin.php?cc

BINGO! Cleared Cache worked. Thanks again

Hi,



I did a little trick in order to let my customer change this without having to edit the .tpl



I created a language variable (product_mini_thumbnail_size), and then I placed this in the code of the .tpl, like this:



Where there is:



{assign var="th_size" value="30"}




I replaced with:



{assign var="th_size" value=$lang.product_mini_thumbnail_size}




And then make sure that this language variable is always a numeric value.



I know this is quite dirty and maybe it won't resist any update, but I was in a development stage and needed to let the customer play with this.

El Nucli, That's hilarious and clever!