Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Location of General Template

Location of General Template

Locked

Views: 911

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
15 Apr 2008, 8:48 PM
#1
dejavu avatar

dejavu

New Zenner

Join Date:
Mar 2008
Posts:
76
Plugin Contributions:
0

Location of General Template

On each page there is a menu at the top and menu at the bottom followed by a copyright. The rest of the templates seem to fit inside of this. Does anyone know which module contains the html/php that generates the code that is displayed on every page?

15 Apr 2008, 9:06 PM
#2
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: Location of General Template

The template files in general are located in /includes/templates/, surprisingly enough.

The file that generates and organizes the overall page layout is /includes/templates/your_template/common/tpl_main_page.php, which calls in many other template files for the individual parts of the page.

15 Apr 2008, 9:10 PM
#3
kobra avatar

kobra

Black Belt

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

Re: Location of General Template

Does anyone know which module contains the html/php that generates the code that is displayed on every page?
Not html...If I understand what you are seeking then look at the template you have active first and if not overriden in the template look to template_default and for these files

template_name/common/tpl_header.php
template_name/common/tpl_footer.php
template_name/common/tpl_main_page.php

18 Apr 2008, 2:40 AM
#4
dejavu avatar

dejavu

New Zenner

Join Date:
Mar 2008
Posts:
76
Plugin Contributions:
0

Re: Location of General Template

Much thanks.