Zen Cart Logo
Forums / Basic Configuration / Create separate footer for checkout

Create separate footer for checkout

Locked

Views: 1,177

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
24 Aug 2007, 9:41 PM
#1
bekahruth avatar

bekahruth

Zen Follower

Join Date:
Feb 2007
Posts:
101
Plugin Contributions:
0

Create separate footer for checkout

How would I create a separate footer to show during https when someone checks out. I have a sitemeter on my footer right now, and it's messing up the https, (unsecure items). So I would like to create a different footer to be used during https that doesn't include the sitemeter. Any suggestions? Thanks so much.

24 Aug 2007, 10:35 PM
#2
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: Create separate footer for checkout

Or you could just edit your tpl_footer.php where you have put your sitemeter code and tell it not to run on SSL pages.

<?php if ($request_type != 'SSL') { ?>
<!-- sitemeter code here -->
<?php } ?>
25 Aug 2007, 12:33 AM
#3
bekahruth avatar

bekahruth

Zen Follower

Join Date:
Feb 2007
Posts:
101
Plugin Contributions:
0

Re: Create separate footer for checkout

Amazing, it works perfectly! I really need to learn how to write php.