Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 2010
    Posts
    4
    Plugin Contributions
    0

    help question 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.

  2. #2
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Header Sales Text not showing

    Quote Originally Posted by briandroberts View Post
    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 Code:
    <?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 ?>

 

 

Similar Threads

  1. v139h styling header sales text
    By charliepingpong in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 14 Mar 2012, 12:46 AM
  2. Text on Header not showing
    By boutique in forum General Questions
    Replies: 4
    Last Post: 5 Jan 2009, 01:43 AM
  3. Text on Header not showing
    By boutique in forum General Questions
    Replies: 2
    Last Post: 3 Jan 2009, 07:04 AM
  4. Header sales text
    By AHeartForTheEarth in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 6 Nov 2008, 10:41 PM
  5. Text not showing and top header extending too far to the right
    By b18cya in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 20 Mar 2007, 08:06 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg