Show Magento Custom Attribute
To show and/or display a Magento Custom Attribute after you’ve set it up is very simple. Simple add the following: <?php echo $_product->getAttributeName() ?> Or use in an if statement for more control: <?php if( $_product->getAttributeName() != ”): ?> //echo the attribute here as seen above <? endif; ?> Using either of the options will … Continued