Dali
Dali

Reputation: 7882

Magento - show a single product in homepage

how to show a single product in homepage of Magento, I want to show exactly the product name, image and price.

Thanks a lot.

Upvotes: 1

Views: 4186

Answers (3)

ʍǝɥʇɐɯ
ʍǝɥʇɐɯ

Reputation: 4022

The easiest option is to do a redirectmatch in the htaccess to your preferred product and then to give that product something like 'buynow' or 'welcome.html' as the URL code on it's product page settings.

Upvotes: 0

Richard Feraro
Richard Feraro

Reputation: 477

Try this instead: Adding Products To The Home Page Of Magento

Upvotes: 0

eddie.vlagea
eddie.vlagea

Reputation: 667

An easy way is to add that product to a category and display that category on the homepage by going to CMS - Manage Pages, select Home Page from the list of pages and add

{{block type="catalog/product_list" category_id="8" template="catalog/product/list.phtml"}}

where category_id="8" is the category's id (thisid is displayed on the category page in Magento's admin)

Upvotes: 2

Related Questions