cancel
Showing results for 
Search instead for 
Did you mean: 

MSRP Message

SOLVED
   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

MSRP Message

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); ?>

 

1 ACCEPTED SOLUTION

Accepted Solutions

Re: MSRP Message

@CaptainG

 

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

View solution in original post

4 REPLIES 4

Re: MSRP Message

@CaptainG

 

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

Re: MSRP Message

You absolute star - works perfectly.

Thank you.

Re: MSRP Message

It's a pleasure helping out the Awesome Community Smiley Happy
Was my answer helpful? You can accept it as a solution.
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer

Re: MSRP Message

Thanks a bunch..