Creating magento extension with custom database table
In this post we are discussing about creating magento extension with custom database table. Follow step by step and if you encounter any error don’t hesitate to contact me Document Conventions I am going to use a few common conventions …
Get country list in magento
By accessing the magento collections we can get country list in magento, Here is the code to get all the countries in magento Hope you get country list in magento using this code snippet.
Show order summary inside magento success page
Sometimes we need to show order summary inside magento success page Copy this snippet of code inside template/checkout/success.phtml Hope you will get how to show order summary inside magento success page
How to call any template inside phtml file magento
Sometimes you want to call a block inside a .phtml file without defining in layout. In this case, we can use a method called toHtml of a block. Assume that we have a block called Mymodule and a template that …