Skip to content

Instantly share code, notes, and snippets.

@rodde177
Last active August 29, 2015 14:16
Show Gist options
  • Save rodde177/42d5dd87fcc7564ab3e5 to your computer and use it in GitHub Desktop.
Save rodde177/42d5dd87fcc7564ab3e5 to your computer and use it in GitHub Desktop.
Get minimum quantity increment for grouped products in Magento
<?php foreach ($_associatedProducts as $_item): ?>
<tr>
<td>
<?php $stockItem = $_item->getStockItem(); ?>
<?php echo $stockItem->getMinSaleQty(); ?>
</td>
</tr>
<?php endforeach; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment