Summary:
Url rewriting misinterpreted problems parameters module
Detailed Description:
the url rewriting is is misinterpreted, so I disabled the url rewriting only.
around line 49, after :
$prettyurl .= '/d,' ....
put in comment :
$onerow->name = $this->CreateLink($id, 'fe_product_list',
$detailpage!=''?$detailpage:$returnid, $category['name'], $sendtodetail,'',
false, false, '', true, $prettyurl);
and replace by :
$onerow->name =
$this->CreateLink($id,'fe_product_list',($detailpage!='')?$detailpage:$returnid,$category['name'],array('category_id'=>$category['category_id']));
it's just an alternative for use shopMadeSimple for this moment.