Skip to content

Instantly share code, notes, and snippets.

@ravixp
Last active July 12, 2017 17:40
Show Gist options
  • Select an option

  • Save ravixp/dead50751fb2ba2ee621c4d648d1d225 to your computer and use it in GitHub Desktop.

Select an option

Save ravixp/dead50751fb2ba2ee621c4d648d1d225 to your computer and use it in GitHub Desktop.
Magento 1: Add MSRP price inside price.phtml file
/* Get MRSP price Magento 1 */
<?php $_msrpPrice = $this->helper('core')->currency($_product->getMsrp(),true,true) ?>
<span class="price@>
<span class="label"><?php echo $this->__('MSRP Price:') ?></span>
<span class="price"><?php echo $_msrpPrice ?></span>
</span>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment