user3840522
user3840522

Reputation:

how to add products in magento 1.9 in front end

Now i have installed magento 1.9 .

My page look like this https://i.sstatic.net/0XB84.jpg

I want to know how to add products without using sample data.

Can you help me?

Upvotes: 1

Views: 3347

Answers (2)

Steve
Steve

Reputation: 1

the best place to find information about the general setting up of Magento is the Magento Knowledge Base. As for adding products, I recommend adding categories first so that visitors can navigate to the products. The article for that is at http://www.magentocommerce.com/knowledge-base/entry/tutorial-creating-and-managing-categories. Once you have categories, they can be assigned to products as they are added following the article at http://www.magentocommerce.com/wiki/1_-_installation_and_configuration/adding-a-new-product.

To show products from a specific category, get the category ID from admin, and include it on your home page's CMS content using the code (changing the category ID of course):

{{block type="catalog/product_list" name="home.catalog.product.list" alias="products_homepage" category_id="4" template="catalog/product/list.phtml"}}

Upvotes: 0

Shivananda Chary
Shivananda Chary

Reputation: 565

GO to Catalog- Products - Manage Products click on Add Product button in right top. Insert all required fields.
To display in front end it must be in stock so go to inventory select In Stock and Quantity greater than zero
. And It must be added to a category to display in category view [to add a category go to Catalog - Manage categories ] or else to view the product you might need to search for it.

Upvotes: 1

Related Questions