Quote Originally Posted by LittleAngell52 View Post
Hi There,

I just installed Westminster New template to my store and I lost all sideboxes when I installed the template. I downloaded it from Zencart forums. I can't understand where I went wrong? Plus is there a way I can add information and more information to the tabs? Oh and by the way, before you say did you update the sideboxes the answer is yes. I have also done a screen shot of what I can see via chrome.

Click image for larger version. 

Name:	Image1.jpg 
Views:	173 
Size:	46.9 KB 
ID:	16873
When a new template is installed you must RESET the layout boxes. They will not appear as you had them so you need to reconfigure their location and sort orders.

Additionally, this template blocks side boxes on the home page - irrespective of the setting you make under the configuration >>> layout settings options.

You need to edit out the blocker in the templates tpl_main_page.php file,

PHP Code:
if ($this_is_home_page) {
  
$flag_disable_right true;
  
$flag_disable_left true

PHP Code:
if ($this_is_home_page) {
  
$flag_disable_right true;
  
$flag_disable_left false
If you want right side boxes on the page as well, then make the necessary change - but nobody clutters up sites with left AND right columns these days.