Quote:
Originally Posted by skipmartin
Here is a quick way to do it
Modify pages.php:
Code:
require "./auth.php";
require $xcart_dir."/include/categories.php";
include "./featured_products.php"; // ADD THIS LINE
x_load('files');
and then in your static page, insert:
Code:
{include file="customer/main/featured.tpl" f_products=$f_products}
and be sure you have "Parse Smarty tags in the content of embedded pages" checked in the admin site.
|
This is exactly what i was looking for!..
but one more thing..
how can i separate the feature products by the POS number so i can make separate groups of featured products?
for example;
the feature products on the homepage will have the POS numbers 1-10.
the feature products on the static page will have the POS numbers 11-20.
i've done this before with my categories menu..just dont know how to input it for my feature products. any help would be great appreciated.