Skip to content

Instantly share code, notes, and snippets.

@tegansnyder
Created March 6, 2014 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tegansnyder/9392010 to your computer and use it in GitHub Desktop.
Save tegansnyder/9392010 to your computer and use it in GitHub Desktop.
Get product base_image url
<?php
require_once('app/Mage.php');
umask(0);
Mage::app();
$product = Mage::getModel('catalog/product')->load(1);
echo Mage::getModel('catalog/product_media_config')->getMediaUrl($product->getImage());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment