Support

Account

Home Forums General Issues How To display the gallery's one image in front end Reply To: How To display the gallery's one image in front end

  • Do you mean you want to display the first image in the gallery by itself? If so, with the code you have $images[0] will be the first image. So something like this should work:

    <img src="<?php echo $images[0]["sizes"]["large"]; ?>" >

    You don’t need to put that in the foreach loop. Just after checking if($images):