Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save luizventurote/acf4e5b6563337c5b395bdc86bcb758a to your computer and use it in GitHub Desktop.
Save luizventurote/acf4e5b6563337c5b395bdc86bcb758a to your computer and use it in GitHub Desktop.
Override Product Price Template In Magento

Use this:

<?php echo $this->getLayout()->createBlock('catalog/product_price')
            ->setTemplate('catalog/product/customprice.phtml')
            ->setProduct($_product)
            ->setDisplayMinimalPrice(true)
            ->setIdSuffix($idSuffix='amit')
            ->toHtml(); ?>

Instead of <?php echo $this->getPriceHtml($_product, true) ?>

@lukasfarina
Copy link

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment