cancel
Showing results for 
Search instead for 
Did you mean: 

MSRP Message

SOLVED

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.
175+ Professional Extensions for M1 & M2
Need a developer?Just visit Contact Us Now

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.
175+ Professional Extensions for M1 & M2
Need a developer?Just visit Contact Us Now

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.
175+ Professional Extensions for M1 & M2
Need a developer?Just visit Contact Us Now

Re: MSRP Message

Thanks a bunch..