I have a Magento store and got some Televisions inside with an attribute “contrast_ratio”.
I need to fetch this attribute from a .phtml file and been trying and following tutorials for 2 days.
Anyone can help please?
I’m running on magento 1.4.2
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try this:
$_product->getResource()->getAttribute('contrast_ratio')->getFrontend()->getValue($_product);Other options include:
$_product->getAttributeText('contrast_ratio')