Skip to content

Instantly share code, notes, and snippets.

@iledcom
Last active August 29, 2015 14:27
Show Gist options
  • Save iledcom/f7a1f3bd8f952adfe23c to your computer and use it in GitHub Desktop.
Save iledcom/f7a1f3bd8f952adfe23c to your computer and use it in GitHub Desktop.
Drupal 7 Commerce entity_load
<?php
$products = entity_load('commerce_product');
foreach ($products as $product) {
$title = $product->title;
$cokol = field_get_items('commerce_product', $product, 'field_cokol');
$cokolname = field_view_value('commerce_product', $product, 'field_cokol', $cokol[0], array(
'type' => 'text',
));
?>
<?php print render($cokolname);?>
<?php }
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment