Thx for reply but I don't think you understood my problem.
I know I can add (general )featured products on the home page.
But I need featured products from specific categories.
So if I go to the "Catalog->Categories", select desired category, scroll to the bottom of the page and add "Featured product" - how can I add this product to the home page (along with other featured products from other categories)?
Or I can ask this question differently...
How can I define featured products category in this import
Code:
{capture name=dialog}
{include file="customer/main/products.tpl" products=$f_products featured="Y"}
{/capture}
{include file="customer/dialog.tpl" title=$lng.lbl_featured_products content=$smarty.capture.dialog sort=true additional_class="products-dialog dialog-featured-list"}
It is evident that
Code:
{include file="customer/main/products.tpl" products=$f_products featured="Y"}
imports featured products to the page (home, or any other) - but category ID of these featured products is "0" and I need it to be specific ID(s)
So is it somehow possible to add some category property into this import?
Something like
Code:
{include file="customer/main/products.tpl" cat=123 products=$f_products featured="Y"}
or something similar?
Thx in advance!