- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2015
01:19 AM
04-30-2015
01:19 AM
I'm looking to display the value I have set in "Manufacturer's Suggested Retail Price" on the product page.
I was hoping it was going to be as simple case of adding something like the following to view.phtml, unfortunately it doesn't seem to be.
<?php echo $this->getMSRPPriceHtml($_product); ?>
Solved! Go to Solution.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2015
04:55 AM
04-30-2015
04:55 AM
Try this:
<?php echo Mage::helper('core')->currency($_product->getMsrp(),true,false); ?>
Was my answer helpful? You can accept it as a solution.
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
4 REPLIES 4
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2015
04:55 AM
04-30-2015
04:55 AM
Try this:
<?php echo Mage::helper('core')->currency($_product->getMsrp(),true,false); ?>
Was my answer helpful? You can accept it as a solution.
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2015
05:55 AM
04-30-2015
05:55 AM
Re: MSRP Message
You absolute star - works perfectly.
Thank you.
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2015
05:59 AM
04-30-2015
05:59 AM
Re: MSRP Message
It's a pleasure helping out the Awesome Community
Was my answer helpful? You can accept it as a solution.
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2015
04:54 PM
08-27-2015
04:54 PM
Re: MSRP Message
Thanks a bunch..