noobert 2007-05-30 17:02 | How I can get this work in 2.0? Is it possible? thanks! http://opensolution.org/Quick.Cart/forum/?p=readTopic&nr=4185 » Quick.Cart v2.x |
merci 2007-05-31 13:31 | noobert - it is much easier to do in v2.0. Open file index.php and replace
if( checkTypeShowSub( $aData['iType'] ) ) $sSubcategories = listCategoriesChildren( $iCategory, 'contents_details.tpl', true ); else $sSubcategories = null;
with:
if( checkTypeShowSub( $aData['iType'] ) ) $sSubcategories = listCategoriesChildren( $iCategory, 'contents_details.tpl', true ); else $sSubcategories = listCategoriesChildren( $iCategory, 'contents_details.tpl', true );
|
noobert 2007-05-31 23:26 | Thank you merci so much ! Its working really great now. |