if ('classList' in document.body) {
document.body.classList.add('js');
document.body.classList.remove('no-js');
}
Before you continue...
Yahoo is part of Oath. Oath and our partners need your consent to access your device and use your data (including location) to understand your interests, and provide and measure personalised ads. Oath will also provide you personalised ads on partner products.
Learn More.
How Oath and our partners bring you better ad experiences
To give you a better overall experience, we want to provide relevant ads that are more useful to you. For example, when you search for a film, we use your search information and location to show the most relevant cinemas near you. We also use this information to show you ads for similar films you may like in the future. Like Oath, our partners may also show you ads that they think match your interests.
Learn more about how Oath collects and uses data and how our partners collect and use data.
Select 'OK' to continue and allow Oath and our partners to use your data, or select 'Manage options' to view your choices.
0
I need to display a custom attribute bellow the product name and I don't know how can I call this attribute. I am editing the file /app/design/frontend/templatemela/MAG100219_1/template/catalog/product/view.phtml But how can I call this attribute in php? I tried calling a string echo with the name I put in the attribute, but it didn't work. Code is as below: <div class="page-title product-title"> <h1><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></h1> </div> <div class="codigoinmetro"> <h2><?php echo $_helper->productAttribute($_product, $_product->getName(), 'registroinmetro') ?></h2> </div>
php attrib...