Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save druman/0e5d63996e6c6dd0b110 to your computer and use it in GitHub Desktop.
Save druman/0e5d63996e6c6dd0b110 to your computer and use it in GitHub Desktop.
Drupal7 Commerce_product_load_multiple
$product_array = array();
foreach ($vars['field_product'] as $product) {
$product_array[] = $product['product_id'];
}
$products = commerce_product_load_multiple(
$product_array,
array("status"=>1)
);
// testing...
echo "<pre>";
print_r($products); exit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment