Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <?php foreach ($_selections as $_selection): ?>
  2. <?php if ($_selection->getSelectionCanChangeQty() && $this->_isSelected($_selection)): ?>
  3. <?php $tierPriceHtml = $this->getTierPriceHtml($_selection); ?>
  4. <?php endif; ?>
  5. <option value="<?php echo $_selection->getSelectionId() ?>"<?php if ($this->_isSelected($_selection)) echo ' selected="selected"' ?><?php if (!$_selection->isSaleable()) echo ' disabled="disabled"' ?>><?php echo $this->getSelectionTitlePrice($_selection, false) ?></option>
  6. <?php endforeach; ?>
  7.  
  8. <?php foreach ($_selections as $_selection): ?>
  9. **<?php $productLoad=Mage::getModel('catalog/product')->load($_selection->getId()); ?>**
  10. <?php if ($_selection->getSelectionCanChangeQty() && $this->_isSelected($_selection)): ?>
  11. <?php $tierPriceHtml = $this->getTierPriceHtml($_selection); ?>
  12. <?php endif; ?>
  13. <option value="<?php echo $_selection->getSelectionId() ?>"<?php if ($this->_isSelected($_selection)) echo ' selected="selected"' ?><?php if (!$_selection->isSaleable()) echo ' disabled="disabled"' ?>><?php echo $productLoad->getAttributeText('size'); ?></option>
  14. <?php endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement