Create Custom Tab in Magento Product Add/Edit Page

Share
Posted on February 27th, 2012 | Posted by admin

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.

Programmatically Add Grouped Product to Cart in Magento

Share
Posted on February 27th, 2012 | Posted by admin

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>;

I can’t add a product to my wishlist – Magento

Share
Posted on February 14th, 2012 | Posted by admin

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.

How to export Magento product

Share
Posted on February 1st, 2012 | Posted by admin

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

View product in frontend from Magento admin

Share
Posted on January 30th, 2012 | Posted by admin

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.

Page 1 of 612345»...Last »