News:

Support the VirtueMart project and become a member

Main Menu

: Undefined offset: 1 on line 179

Started by ibnati, July 13, 2018, 18:09:48 PM

Previous topic - Next topic

ibnati

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

Studio 42

$product->images[1]
to
isset($product->images[1])

ibnati