Last active
August 29, 2015 14:27
-
-
Save iledcom/f7a1f3bd8f952adfe23c to your computer and use it in GitHub Desktop.
Drupal 7 Commerce entity_load
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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