Last active
July 12, 2017 17:40
-
-
Save ravixp/dead50751fb2ba2ee621c4d648d1d225 to your computer and use it in GitHub Desktop.
Magento 1: Add MSRP price inside price.phtml file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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