February 3, 2010 |
Shahid |
Magento |
3 Comments
I just managed to find some time to write a small module which will help you if you want to add quantity text box on your catalog / product listing page.
As lot of users were asking about it, so I thought it would be very good to share it with other users.
So, let’s do it step by step:
St
[ read more ]
February 1, 2010 |
Shahid |
Magento |
No Comments
Yesterday I was trying to find out that how to run magento outside platform and found out very nice little code and also how you can get the query of product collection or any other table using the following code:
<?php
getCollection();
$collection->addAttributeToSelect('status');
$c
[ read more ]
January 27, 2010 |
Shahid |
Magento |
1 Comment
I was just working on the Sales module to override block and model classes.
I though it would be very good to share it with others as well.
So, here it is and let’s do it step by step:
Step 1:
Create new module in local folder with your preferred name, in my case I am going to keep it
[ read more ]