If you are trying to add a custom tab to the product add/edit page in Magento admin, then you are at the right place. Today I will tell you a damn simple method to add the custom tab to product add/edit page. We will have to add few lines to the xml layout file of your custom module. Then create a phtml file that contains the html part to be shown in the tab.
Adding simple products to cart through custom PHP code is pretty straight forward. You just need to call the ‘$cart->addProduct()’ function with the product_id and quantity as parameters. But if you want to add grouped products to cart through your code, you will need to perform few additional steps. The process is very easy – create an ‘$super_group’ array of the associated products with the specified quantities. Then you need to pass the array to the ‘addProduct()’ function. See the actual code below that makes it work:
<?php //Array for holding the associated products $super_group = array(); //Id of the grouped product $parentId = <grouped_product_id>;
One of our clients at the office had a store and the “wishlist” button in the product view wasn’t working.
The products he was trying to add weren’t in the root category.
You must add your products at least to the root category.

Hi everyone, as we all know, Magento supports a large number of products. That’s great! But it is also causing problem for people who wants to export / import products. I will try to show you a way which use Magento functionality to export and import product. In this article, let’s start with how to export Magento product.
This tutorial is written based on Magento 1.4 but it should be similar for other Magento versions.
In admin panel, go to System > Import/Export > Profiles
When you are editing some product in Magento admin and want to check it out in frontend of your Magento project, how do you find this particular product? Do you search for it, navigate to it using product url key or just browse to it? Well, however you do it, I’m going to give you the easiest way to get to your desired product in the frontend – view product link.


