View Single Post
  #1  
Old 11-02-2007, 10:57 AM
 
WSGTeam WSGTeam is offline
 

Member
  
Join Date: Oct 2006
Posts: 12
 

Default Bug In BCSE Manufacturer's Categories Mod

I recently discoved that with this mod installed if yuo click on a manufacturer and choose a category that has more than 1 page worth of products, going to the next page of products will push you back to the category list for that manfucaturer.

To fix: (my version 4.1.7)

OLD: modules\Manufacturers\customer_manufacturers_list. php
Code:
$smarty->assign("navigation_script","manufacturers.php?manufacturerid=".$manufacturerid."&sort=".$sort."&sort_direction=".$sort_direction);

Replace with:
Code:
if(!$catid){ $smarty->assign("navigation_script","manufacturers.php?manufacturerid=".$manufacturerid."&sort=".$sort."&sort_direction=".$sort_direction); }else{ $smarty->assign("navigation_script","manufacturers.php?manufacturerid=".$manufacturerid."&catid=".$catid."&sort=".$sort."&sort_direction=".$sort_direction); }
__________________
X-Cart
Versions 4.0.19 - 4.1.7
Reply With Quote