VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: ibnati on July 13, 2018, 18:09:48 PM

Title: : Undefined offset: 1 on line 179
Post by: ibnati on July 13, 2018, 18:09:48 PM
hello

i see a warning on the product page :  Undefined offset: 1    on line  179

<?php   if($show_two_image && $product->images[1]) { ?>

how can i fix this please ?

thanks
amine
Title: Re: : Undefined offset: 1 on line 179
Post by: Studio 42 on July 13, 2018, 18:52:35 PM
$product->images[1]
to
isset($product->images[1])
Title: Re: : Undefined offset: 1 on line 179
Post by: ibnati on July 13, 2018, 19:36:16 PM
perfect , this fixed the  issue