Magento: change Catalog Price to 3rd decimal point

Magento prices to display and round to the third (3rd) decimal point you need to override these files: lib/Zend/Currency.php Change: To Override file from core to local and change at the bottom app/code/local/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Options/Option.php Change: To: app/code/local/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Price.php Change: To: app/code/local/Mage/Core/Model/Store.php Change: To: To show in frontend: app/code/local/Mage/Directory/Model/Currency.php Change: To: For Tire Read more…

Maagento: How to create an unsubscribe page

1. Create a  “unsubscribe.phtml” page with the following code: 2. Create a CMS page Name ‘Unsubscribe’ and url ‘unsubscribe’ and call that “unsubscribe.phtml” page in your cms page. 3. Now in page /app/design/frontend/your_package/your_theme/template/newsletter/subscribe.phtml add the follwing code to add a link to the cms page. 4.Now in /app/code/core/Mage/Newsletter/Block/Subscribe.php add a Read more…