Skip to content

Instantly share code, notes, and snippets.

@iledcom
Created August 18, 2015 12:03
Show Gist options
  • Save iledcom/d9a8d85a85bbbda4e908 to your computer and use it in GitHub Desktop.
Save iledcom/d9a8d85a85bbbda4e908 to your computer and use it in GitHub Desktop.
Drupa7 Output URL large image
<?php
foreach ($node->field_product['und'] as $key => $product_array) {
if ( !empty($product_array) ) {
$product = commerce_product_load($product_array['product_id']);
$largeimg = image_style_url('large', $product->field_image['und'][0]['uri']);
echo $largeimg;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment