Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Information Sidebox not showing on Homepage

Information Sidebox not showing on Homepage

Views: 577

Results 1 to 4 of 4
20 May 2014, 9:58 PM
#1
andy6867 avatar

andy6867

New Zenner

Join Date:
May 2014
Location:
MA
Posts:
20
Plugin Contributions:
0

Information Sidebox not showing on Homepage

The information sidebox shows on every page apart from the home page where i just have best sellers and featured products... how can i get the information box to appear on homepage?

http://roadfoxbicycles.com/Store

Thanks

Andy

20 May 2014, 10:09 PM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Information Sidebox not showing on Homepage

You appear to be using a template monster template - theme724

They take much license in creating them and hard code much of the content

Best to ask them

You can switch to the classic template to see if it shows

20 May 2014, 11:00 PM
#3
andy6867 avatar

andy6867

New Zenner

Join Date:
May 2014
Location:
MA
Posts:
20
Plugin Contributions:
0

Re: Information Sidebox not showing on Homepage

Okay... i did an inspect element and found that the code is there to show the information sidebox but its is set to display none

<div class="box " id="information" style="width:241px;display:none;">

I just don't know which .php file this line is in... i'm guessing its a style sheet

Andy

20 May 2014, 11:16 PM
#4
andy6867 avatar

andy6867

New Zenner

Join Date:
May 2014
Location:
MA
Posts:
20
Plugin Contributions:
0

Re: Information Sidebox not showing on Homepage

Found it...

It resides in tpl_box_default_right.php

 if($this_is_home_page && $box_id == 'information'){
		$visible = 'display:none;';
	}else $visible = '';

Change to:

 if($this_is_home_page && $box_id == 'information'){
		$visible = 'display:block;';
	}else $visible = '';