Hi
Is there a way to display New Products in a Nav Block it a similar way the Category Preview works?
Thanks
Hi
Is there a way to display New Products in a Nav Block it a similar way the Category Preview works?
Thanks
Create a new nav block, and put this in the Content field:
The above code will show products from the New Products category. To show products from another category, find the category's record_number in the control panel, and change the first parameter:PHP Code:<?php
$prod_info = sc_products(1,'category_preview_box',1,5);
$Product_Rows = $prod_info['rows'];
if (!$Product_Rows) return false;
include sc_tpl('category_preview_main');
?>
to match the category record_number:PHP Code:$prod_info = sc_products(1,'category_preview_box',1,5);
PHP Code:$prod_info = sc_products(23,'category_preview_box',1,5);
Thanks,
Jamie
PHP shopping cart software - Squirrelcart
Please rate or review us!![]()
Hotscripts ● PHP Resource Index
Hi Jamie
That's great, works well. Thank you so much.
There are currently 1 users browsing this thread. (0 members and 1 guests)