Hello!
As you can see on this link : http://www.theobald-trucks.com/index.php/vehicules-occasion/tracteurs/volvofh480-detail
the main product image appears twice (Once big, once small).
Can you tell me how can I delete the little one of my product page?
Thank you
I use a template override to not show the main image as a thumb. Edit components/com_virtuemart/views/productdetails/tmpl/default_images.php as follows:
Find
<?php
for ($i = 0; $i < $count_images; $i++) {
$image = $this->product->images[$i];
?>
Replace with
<?php
for ($i = 1; $i < $count_images; $i++) {
$image = $this->product->images[$i];
?>
and use the edited file as a template override.
That's perfect, it's working!
Thank you!