Zen Cart Logo
Forums / General Questions / enable right column only on product listing pages

enable right column only on product listing pages

Views: 507

Results 1 to 2 of 2
30 May 2012, 3:55 AM
#1
warroyo90 avatar

warroyo90

New Zenner

Join Date:
Jan 2012
Posts:
59
Plugin Contributions:
0

enable right column only on product listing pages

how could I enable the right column only on product listing type pages such as featured products, new products, all products, or when viewing categories.

30 May 2012, 4:21 AM
#2
warroyo90 avatar

warroyo90

New Zenner

Join Date:
Jan 2012
Posts:
59
Plugin Contributions:
0

Re: enable right column only on product listing pages

solved my own problem..

i added this to the tpl_main_page.php file

if ($current_page_base != 'index') { 
		$flag_disable_right = true; 
	}  
	
	$pos = strpos($cPath,"_");
	
	if ($current_page_base == 'index' and !$pos) { 
		$flag_disable_right = true; 
	}