VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: Benjamin on November 04, 2013, 16:31:05 PM

Title: [Solved] Main image appears twice
Post by: Benjamin on November 04, 2013, 16:31:05 PM
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
Title: Re: Main image appears twice
Post by: jenkinhill on November 04, 2013, 19:19:08 PM
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.
Title: Re: Main image appears twice
Post by: Benjamin on November 04, 2013, 20:30:02 PM
That's perfect, it's working!

Thank you!