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);
}