Hello,
I've got a theme that came with Easy Tabs, and I'm trying to insert a custom product attribute (it exists on all products) and simply display the content of that attribute.
Can this be done via the CMS > Static Blocks > BLOCKNAME > Content box ?
Follow this:http://www.mcnab.co/blog/e-commerce/magento/custom-attribute-tab-in-magento-easy-tabs/
It will help you out.
Well,
That sort of helps, except that's pulling entire attribute sets. If I was looking to pull a single attribute from default/general attribute set, and only display that one attribute (call it customshippingvalue ), would I change it like so:
<?php if (0 == strcmp($attributeSetName, 'Default')): ?> <?php echo $_product->getcustomshippingvalue() ?></td>
Do you want to display the attribute html or just value which is set for the product?
Just the value that is set for the currently selected product.
help?