Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / the footer needs to be removed..

the footer needs to be removed..

Views: 844

Results 1 to 4 of 4
8 Dec 2013, 5:03 PM
#1
awk_grep avatar

awk_grep

New Zenner

Join Date:
Dec 2006
Location:
Dallas,TX
Posts:
98
Plugin Contributions:
0

the footer needs to be removed..

Hello,

I need to remove the footer from my Zencart, could it be done through the ADMIN functions? or do I need to get to the code and comment out the footer?

-awk

8 Dec 2013, 5:42 PM
#2
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: the footer needs to be removed..

It can't be done through the admin, but it can be done by a simple template-override. Create the file /includes/templates/YOUR_TEMPLATE/common/tpl_footer.php (where YOUR_TEMPLATE is the name of your store's custom template) and set it to contain:

<?php // No footer code
8 Dec 2013, 10:28 PM
#3
gjh42 avatar

gjh42

Black Belt

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

Re: the footer needs to be removed..

Another method: ```php
$flag_disable_footer = true;

8 Dec 2013, 11:35 PM
#4
frank18 avatar

frank18

Deceased

Join Date:
Nov 2007
Location:
Sunny Coast, Australia
Posts:
3,427
Plugin Contributions:
2

Re: the footer needs to be removed..

gjh42:

Another method: ```php
$flag_disable_footer = true;


And that would be the preferred solution!