Magento Product Title & amp Error : Sometimes this strange error comes when you are using “&” in your magento product or category title and it replaces “&” to “&” . here is the simple solution for the product page . You can find the same for the category page .
Go to /app/design/frontend/default/your_theme/template/catalog/product
replace this code
echo $_helper->productAttribute($_product, $this->htmlEscape($_product->getName()), 'name')
to this
echo $_helper->productAttribute($_product, $_product->getName(), 'name')
Happy Coding 🙂
Be the first to comment.