Menu´s in categories ?

sampsu

No avatar

2007-10-30 17:57

Is there any way to place menu2 in some cateries page ?

Now i have all 3 menus in page.tpl. But now i want that menu2 to shown only in few cateries. Is there a way to but some code to category page when adding new category.

» Quick.Cart v2.x

merci

No avatar

2007-10-31 09:58

sampsu - this will work only for chosen categories. In file index.php replace code:

if( !isset( $sMenu3 ) ){
    
$sMenu3 listCategories'menu_3.tpl'3true, Array( $iCategory ) );
    if( !isset( 
$sMenu3 ) )
      
$sMenu3 $tpl->tbHtml'menu_3.tpl''NOT_FOUND' );
  }

with following:

$aCategories = Array( 123);
  if( !isset( 
$sMenu3 ) && isset( $iCategory ) && in_array$iCategory$aCategories ) ){
    
$sMenu3 listCategories'menu_3.tpl'3true, Array( $iCategory ) );
    if( !isset( 
$sMenu3 ) )
      
$sMenu3 $tpl->tbHtml'menu_3.tpl''NOT_FOUND' );
  }

Back to top
about us | contact