View Single Post
  #453  
Old 08-11-2011, 04:12 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart Smart Template v4.4.x

Anyone wishing to display bestsellers in horizontal format... (not in side menu)

1) Adjust the bestseller module settings to disable the bestsellers in the menu.

2) Upload the attached bestsellers.tpl file to...

skin/smart_template/modules/Bestsellers

3) In modules/Bestsellers/bestsellers.php

Before...

Code:
$smarty->assign_by_ref('bestsellers', $bestsellers);

Insert...

Code:
# Get Bestseller Product Descriptions foreach ($bestsellers as $k => $v) { $bestsellers[$k]['descr'] = func_query_first_cell("select descr from $sql_tbl[products] where productid='$v[productid]'"); }

4) Clear template cache.
Attached Files
File Type: tpl bestsellers.tpl (1.1 KB, 12 views)
__________________
xcartmods.co.uk
Reply With Quote