Guest User

Untitled

a guest
Jul 17th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $_product->getAttributeText('shoes_model'); // returns nothing
  2.  
  3. $_product->getAttributeText('brand'); // returns brand name
  4.  
  5. $_product->getShoesModel();
  6.  
  7. $_product->getData('shoes_model');
  8.  
  9. $attribute = $_product->getResource()->getAttribute('custom_attribute_code');
  10. if ($attribute)
  11. {
  12. echo $attribute_value = $attribute ->getFrontend()->getValue($_product);
  13. }
  14.  
  15. <?php $_product = $this->getProduct(); ?>
  16.  
  17. <?php echo $_product->getData('attributename'); ?>
Add Comment
Please, Sign In to add comment