Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Header Sales Text not showing

Header Sales Text not showing

Locked

Views: 870

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
24 Aug 2010, 2:09 AM
#1
briandroberts avatar

briandroberts

New Zenner

Join Date:
Aug 2010
Posts:
4
Plugin Contributions:
0

Header Sales Text not showing

I have seen several questions in this forum about how to turn off the Header Sales Text. My problem is that I cannot turn it on.

In "includes/languages/english/MY TEMPLATE/header.php", I have included this:
define('HEADER_SALES_TEXT', 'Phone +44 (1273) xxx xxx');

I want this text to appear to the right of the Brats logo in http://d157011.u42.jswebconsole.co.uk/ but it does not appear anywhere.

I'd be grateful for any help.

24 Aug 2010, 3:25 AM
#2
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Header Sales Text not showing

briandroberts:

I have seen several questions in this forum about how to turn off the Header Sales Text. My problem is that I cannot turn it on.

In "includes/languages/english/MY TEMPLATE/header.php", I have included this:
define('HEADER_SALES_TEXT', 'Phone +44 (1273) xxx xxx');

I want this text to appear to the right of the Brats logo in http://d157011.u42.jswebconsole.co.uk/ but it does not appear anywhere.

I'd be grateful for any help.

open includes/templates/YOUR_TEMPLATE/common/tpl_header.php

make sure the following section of code is present.

<?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
    <div id="taglineWrapper">
<?php
              if (HEADER_SALES_TEXT != '') {
?>
      <div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
<?php
              }
?>
<?php
              if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
                if ($banner->RecordCount() > 0) {
?>
      <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
<?php
                }
              }
?>
    </div>
<?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>