0
votes

I uploading to store already prepeared images for base_image, small_image and thumbnail

How can I show in product listing page an original image (not from cache) form the gallery, that checked as small_image

$_product->getSmallImage();

works over catalog/image helper so we getting from it image from cache, but I need to get an Url to my orriginal image, that checked as small_image

thanks

1

1 Answers

0
votes

See Get original image url Magento (1.6.1.0)

or

<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'catalog/product' . $_product->getSmallImage(); ?>