Zen Cart Logo
Forums / Addon Shipping Modules / Remove FedEx Service Mark Notice?

Remove FedEx Service Mark Notice?

Locked

Views: 995

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
7 Oct 2009, 10:13 PM
#1
jbthomasfl avatar

jbthomasfl

New Zenner

Join Date:
Dec 2007
Location:
Winter Park, FL
Posts:
15
Plugin Contributions:
0

Remove FedEx Service Mark Notice?

The person who set up our cart left that at the bottom of our page. I'm guessing it's on the template somewhere, but I have no idea where to look.

TIA for any help!

8 Oct 2009, 10:31 AM
#2
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Remove FedEx Service Mark Notice?

Easiest way would be to use Admin - Tools - Developers Tool Kit to search for 'fedex service' to see what file contains that text.

13 Oct 2009, 2:15 PM
#3
bc3030 avatar

bc3030

New Zenner

Join Date:
Apr 2008
Posts:
5
Plugin Contributions:
0

Re: Remove FedEx Service Mark Notice?

If they followed the readme, it's in includes/templates/YOUR_TEMPLATE/common/tpl_footer.php

from README for 1.3 x.txt

SETUP INSTRUCTIONS:
===================
1. In includes/templates/YOUR_TEMPLATE/tpl_footer.php:
   replace:
   
   <!--bof- site copyright display -->
	 <div id="siteinfoLegal" class="legalCopyright"><?php echo FOOTER_TEXT_BODY; ?></div>
	 <!--eof- site copyright display -->
	 
	 with:
	 
	 <!--bof- site copyright display -->
	 <div id="siteinfoLegal" class="legalCopyright"><?php echo FOOTER_TEXT_BODY; ?>
   <?php if ($_GET['main_page'] == 'checkout_shipping' || $_GET['main_page'] == 'checkout') { ?>
	  <br />
	  <center>FedEx service marks used by permission.</center>
   <?php } ?>
   </div>
   <!--eof- site copyright display -->