0
Redirect to some other location from Model or Observer in Magento
Redirection in Magento’s controller is simple. You just need to call a _redirect() or _forward() function and provide appropriate router/controller/action parameter. But if you want to redirect to some other page from Model or from Observer,...
Generating Backend-Admin URL with Key and Parameters in Magento
When you log into adminstrator part of the Magento webshop, and look into the url you may see something like this.
Admin URL with Keys and Parameters
The part in “RED” are module controller(router)/action. And the part in “GREEN”...
Magento Module Release: Uses Layout To List Post, made by AW Blog, on the basis of Category Identifier
I’ve always wanted to contribute something in Magento Community and I think today the day has arrived. The module is named as Sirius Blog Helper, just a name, Who cares about the “Name” unless it works . The basic function...
Creating Product Links in Magento Using Custom Query
I’ve already made a post in this blog about Adding Related Product and other links to Product in Magento . But when I used the method to creating links among product’s, while importing very large number of products and creating large...
Creating Collection of Objects in Magento using a "Magical Class":Varien_Data_Collection
Have you ever wondered how Collection in Magento are built, containing array of individual Entity Objects of Magento? Collections are one of the most important data structure (if I am right) used in Magento. Most of the queries in Magento will...
Getting Ordered Items and their Detail from Order ID in Magento
Here is a small snippet of code, yet useful, to get ordered items and its details. I’ve deviced this code a lot before and posted in Magento Commerce’s Forum as well. But felt like writting it again, so that I can have a quick refrence...
Create and Download XLS Report file using Magento's Core
Reporting can be a very important part of the Module you might be developing for Mageneto. If you are showing your data in Grid that’s good, but it will be better if you add XLS file generation action on that grid, so that the site administrator...
Debugging Magento Using Eclipse PDT & Zend Debugger
Latest Post on Debugging Magento: Debugging Magento Using Eclipse on Ubuntu
I had always thought of using Eclipse to debug Magento’s complex code flow, and tried number of times before. But without any success I had to abandon it, and...
Getting Customer's Info Using Single Query Including Billing and Shipping Addresses
Query in Magento can be quite troublesome, if you are a starter..or non-starter. So I’ve tried to share some of the difficult queries using collection in Magento, so that it will be helpful to my blog readers and also a place where I can...
Getting Configurable Attributes (Super Attributes) of a Configurable Product
In one of those time when you need to know what attributes of a product is used to make the current configurable product “configurable”, then here it goes Those configurable attributes are called as “Super Attributes”....