Hello All, When we install Magento, we can see that we have two rows in footer links (theme – default). We can edit the links in the top row from CMS block with title ‘Footer Links’. The links in the second row cannot be edited directly, they come from the XML files. I am writing […]
Category: Magento
Everything related to Magento eCommerce
Category Name Magento
Hello all, I am writing here the code for getting category information of the known category id. Hope this is helpful
Static Blocks Magento
Hello all, I am writing here the code for getting the status of the CMS static block of the required block id. Hope this is helpful
Category Tree Magento
Hello all, I am listing here the method to display Category Tree, you can further modify the script for getting products etc. This can be written in any phtml file, but its a better practice to make a model for this. Hope this is helpful.
Get List of Countries in Magento
I have explained the method below for getting the list of Country which we see in Magento. site checkout page. Below code to be written in Block file in a function (you can even write the code in template file). Hope this is helpful to many of you.
List of Email Templates in Magento
I am posting here the method to get the list of Email Templates which we make at admin end (Admin Panel -> System -> Transactional Emails) The below code to be written in Block file. Hope this is helpful.
Online Visitors Magneto
You might have seen in Magento we have a section for seeing the online visitors at a given time. I am describing here the method for getting the number of online visitors, for reference see the my webstore Decrypt Web Store, I am showing the online visitors in the left column. Here is another way […]
Display Random Products in Magento
Hello, I have explained the method for displaying random products below: You can extend the script further as per your requirement. This is a basic way of displaying random products in a page from the product catalog. Hope it is helpful
Form in Magento
Hello All, Many of you who are working in Magento might have come accross the need to make custom form for getting user data. I am writing here an example to display form (with validation) for submitting basic info and send a mail on the email submitted. Suppose the from need to be displayed at […]
Magento SOAP API
Hello All, While working in Magento, some times need arises to use Magento API. Magento Core API supports both SOAP and XML RPC protocols. The API is permission based and allows access to the Customer, Catalog and Order modules of Magento. You can get the information here Magento Core API I am listing here the […]