Page 34 of 40 FirstFirst ... 243233343536 ... LastLast
Results 331 to 340 of 392
  1. #331
    Join Date
    Nov 2008
    Posts
    46
    Plugin Contributions
    0

    Default Help! Right column and footer in products

    Hi.

    I am working in the local workforce, and although I modified the code in common> tpl_main_page.php:

    PHP Code:
    /** if (in_array($current_page_base,explode(",",'specials,products_new,featured_products,products_all')) ) {
        *$flag_disable_right = true;
      *}
    *
    *if ($current_page_base == 'index' and $cPath > '0' ) {
    *$flag_disable_right = true;
    *}  
     */ 
    I can see right column in the index and all pages, except in products,

    I open any product and I still see right column, and besides, I disappears footer, which does not happen in the other pages.

    Can you help please? Where can be the error and put the store up and running?

    Thanks in advance.

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

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by donostiarra123 View Post
    Hi.

    I am working in the local workforce, and although I modified the code in common> tpl_main_page.php:

    PHP Code:
    /** if (in_array($current_page_base,explode(",",'specials,products_new,featured_products,products_all')) ) {
        *$flag_disable_right = true;
      *}
    *
    *if ($current_page_base == 'index' and $cPath > '0' ) {
    *$flag_disable_right = true;
    *}  
     */ 
    I can see right column in the index and all pages, except in products,

    I open any product and I still see right column, and besides, I disappears footer, which does not happen in the other pages.

    Can you help please? Where can be the error and put the store up and running?

    Thanks in advance.
    What is it you are trying to accomplish?

    a link to your site would also be useful.

  3. #333
    Join Date
    Nov 2008
    Posts
    46
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    Uff, that fast, congratulations.

    I want you to always see the right column and footer appears in the pages of products.

    The Link would be nice, but I'm working locally and I can not upload until you are 100% Can you help?

    Greetings

  4. #334
    Join Date
    Nov 2008
    Posts
    46
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    Attachment 2 pictures:
    any page> all right
    Product> away the right column and footer
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	any page.jpg 
Views:	77 
Size:	32.3 KB 
ID:	8212   Click image for larger version. 

Name:	product.jpg 
Views:	60 
Size:	27.3 KB 
ID:	8213  

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

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by donostiarra123 View Post
    Attachment 2 pictures:
    any page> all right
    Product> away the right column and footer
    without actually seeing the problem, I can only guess that the problem might lie in the way you commented out the section of code you indicated in your previous post.

    You might try just deleting that section of code instead of commenting it out.

  6. #336
    Join Date
    Nov 2008
    Posts
    46
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    CODE tpl_main_page.php:

    HTML Code:
    <?php
    /**
     * Common Template - tpl_main_page.php
     *
     * Governs the overall layout of an entire page<br />
     * Normally consisting of a header, left side column. center column. right side column and footer<br />
     * For customizing, this file can be copied to /templates/your_template_dir/pagename<br />
     * example: to override the privacy page<br />
     * - make a directory /templates/my_template/privacy<br />
     * - copy /templates/templates_defaults/common/tpl_main_page.php to /templates/my_template/privacy/tpl_main_page.php<br />
     * <br />
     * to override the global settings and turn off columns un-comment the lines below for the correct column to turn off<br />
     * to turn off the header and/or footer uncomment the lines below<br />
     * Note: header can be disabled in the tpl_header.php<br />
     * Note: footer can be disabled in the tpl_footer.php<br />
     * <br />
     * $flag_disable_header = true;<br />
     * $flag_disable_left = true;<br />
     * $flag_disable_right = true;<br />
     * $flag_disable_footer = true;<br />
     * <br />
     * // example to not display right column on main page when Always Show Categories is OFF<br />
     * <br />
     * if ($this_is_home_page) {<br />
     *  $flag_disable_right = true;<br />
     * }<br />
     * <br />
     * example to not display right column on main page when Always Show Categories is ON and set to categories_id 3<br />
     * <br />
     * if ($current_page_base == 'index' and $cPath == '' or $cPath == '3') {<br />
     *  $flag_disable_right = true;<br />
     * }<br />
     *
     * if ($current_page_base == 'index' and $cPath > '0' ) {
    *$flag_disable_right = true;
    * }
    *
     * @package templateSystem
     * @copyright Copyright 2003-2007 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: tpl_main_page.php 7085 2007-09-22 04:56:31Z ajeh $
     */
    
    // the following IF statement can be duplicated/modified as needed to set additional flags
    /** if (in_array($current_page_base,explode(",",'specials,products_new,featured_products,products_all')) ) {
        *$flag_disable_right = true;
      *}
    *
    *if ($current_page_base == 'index' and $cPath > '0' ) {
    *$flag_disable_right = true;
    *}  
     */  
      $header_template = 'tpl_header.php';
      $footer_template = 'tpl_footer.php';
      $left_column_file = 'column_left.php';
      $right_column_file = 'column_right.php';
      $body_id = ($this_is_home_page) ? 'indexHome' : str_replace('_', '', $_GET['main_page']);
    ?>
    <body id="<?php echo $body_id . 'Body'; ?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?>>
    <?php
      if (SHOW_BANNERS_GROUP_SET1 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET1)) {
        if ($banner->RecordCount() > 0) {
    ?>
    <div id="bannerOne" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
    <?php
        }
      }
    ?>
    <div id="topWrapper">
    <?php
     /**
      * prepares and displays header output
      *
      */
      if (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_HEADER_OFF == 'true' and ($_SESSION['customers_authorization'] != 0 or $_SESSION['customer_id'] == '')) {
        $flag_disable_header = true;
      }
      require($template->get_template_dir('tpl_header.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_header.php');?>
    </div>
    <div id="mainWrapper">
    
    <table width="100%" border="0" cellspacing="0" cellpadding="0" id="contentMainWrapper">
      <tr>
    <?php
    if (COLUMN_LEFT_STATUS == 0 || (CUSTOMERS_APPROVAL == '1' and $_SESSION['customer_id'] == '') || (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_COLUMN_LEFT_OFF == 'true' and ($_SESSION['customers_authorization'] != 0 or $_SESSION['customer_id'] == ''))) {
      // global disable of column_left
      $flag_disable_left = true;
    }
    if (!isset($flag_disable_left) || !$flag_disable_left) {
    ?>
    
     <td id="navColumnOne" class="columnLeft" style="width: <?php echo COLUMN_WIDTH_LEFT; ?>">
    <?php
     /**
      * prepares and displays left column sideboxes
      *
      */
    ?>
    <div id="navColumnOneWrapper" style="width: <?php echo BOX_WIDTH_LEFT; ?>"><?php require(DIR_WS_MODULES . zen_get_module_directory('column_left.php')); ?></div></td>
    <?php
    }
    ?>
        <td valign="top">
    <div id="centerOuterBorder">
    <!-- bof  breadcrumb -->
    <?php if (DEFINE_BREADCRUMB_STATUS == '1' || (DEFINE_BREADCRUMB_STATUS == '2' && !$this_is_home_page) ) { ?>
        <div id="navBreadCrumbWrapper"><div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div></div>
    <?php } ?>
    <!-- eof breadcrumb -->
    
    <?php
      if (SHOW_BANNERS_GROUP_SET3 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET3)) {
        if ($banner->RecordCount() > 0) {
    ?>
    <div id="bannerThree" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
    <?php
        }
      }
    ?>
    
    <!-- bof upload alerts -->
    <?php if ($messageStack->size('upload') > 0) echo $messageStack->output('upload'); ?>
    <!-- eof upload alerts -->
    
    <?php
     /**
      * prepares and displays center column
      *
      */
     require($body_code); ?>
    
    <?php
      if (SHOW_BANNERS_GROUP_SET4 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET4)) {
        if ($banner->RecordCount() > 0) {
    ?>
    <div id="bannerFour" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
    <?php
        }
      }
    ?>
    </div>
    </td>
    
    <?php
    //if (COLUMN_RIGHT_STATUS == 0 || (CUSTOMERS_APPROVAL == '1' and $_SESSION['customer_id'] == '') || (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_COLUMN_RIGHT_OFF == 'true' && $_SESSION['customers_authorization'] != 0)) {
    if (COLUMN_RIGHT_STATUS == 0 || (CUSTOMERS_APPROVAL == '1' and $_SESSION['customer_id'] == '') || (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_COLUMN_RIGHT_OFF == 'true' and ($_SESSION['customers_authorization'] != 0 or $_SESSION['customer_id'] == ''))) {
      // global disable of column_right
      $flag_disable_right = true;
    }
    if (!isset($flag_disable_right) || !$flag_disable_right) {
    ?>
    <td id="navColumnTwo" class="columnRight" style="width: <?php echo COLUMN_WIDTH_RIGHT; ?>">
    <?php
     /**
      * prepares and displays right column sideboxes
      *
      */
    ?>
    <div id="navColumnTwoWrapper" style="width: <?php echo BOX_WIDTH_RIGHT; ?>"><?php require(DIR_WS_MODULES . zen_get_module_directory('column_right.php')); ?></div></td>
    <?php
    }
    ?>
      </tr>
    </table>
    </div>
    <div id="bottom">&nbsp;</div>
    <?php
     /**
      * prepares and displays footer output
      *
      */
      if (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_FOOTER_OFF == 'true' and ($_SESSION['customers_authorization'] != 0 or $_SESSION['customer_id'] == '')) {
        $flag_disable_footer = true;
      }
      require($template->get_template_dir('tpl_footer.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_footer.php');
    ?>
    
    <!--</div>-->
    <!--bof- parse time display -->
    <?php
      if (DISPLAY_PAGE_PARSE_TIME == 'true') {
    ?>
    <div class="smallText center">Parse Time: <?php echo $parse_time; ?> - Number of Queries: <?php echo $db->queryCount(); ?> - Query Time: <?php echo $db->queryTime(); ?></div>
    <?php
      }
    ?>
    <!--eof- parse time display -->
    <!--bof- banner #6 display -->
    <?php
      if (SHOW_BANNERS_GROUP_SET6 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET6)) {
        if ($banner->RecordCount() > 0) {
    ?>
    <div id="bannerSix" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
    <?php
        }
      }
    ?>
    <!--eof- banner #6 display -->
    </body>
    Greetings

  7. #337
    Join Date
    Nov 2008
    Posts
    46
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    Hi

    I do not see the problem.
    Any idea why it may happen that does not show the right column and footer on products?



    Thanks

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

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by donostiarra123 View Post
    Hi

    I do not see the problem.
    Any idea why it may happen that does not show the right column and footer on products?



    Thanks
    As I said, you might want to try deleting this section of code

    Code:
    // the following IF statement can be duplicated/modified as needed to set additional flags
    /** if (in_array($current_page_base,explode(",",'specials,products_new,featured_products,products_all')) ) {
        *$flag_disable_right = true;
      *}
    *
    *if ($current_page_base == 'index' and $cPath > '0' ) {
    *$flag_disable_right = true;
    *}  
     */

  9. #339
    Join Date
    Nov 2008
    Posts
    46
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by clydejones View Post
    As I said, you might want to try deleting this section of code

    Code:
    // the following IF statement can be duplicated/modified as needed to set additional flags
    /** if (in_array($current_page_base,explode(",",'specials,products_new,featured_products,products_all')) ) {
        *$flag_disable_right = true;
      *}
    *
    *if ($current_page_base == 'index' and $cPath > '0' ) {
    *$flag_disable_right = true;
    *}  
     */
    Sorry.

    I've removed, but the problem remains.

    Why can happen only disappear right column and footer in products?

    With another template serves me right, can you think of where it might be the problem?

    Thanks

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

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by donostiarra123 View Post
    Sorry.

    I've removed, but the problem remains.

    Why can happen only disappear right column and footer in products?

    With another template serves me right, can you think of where it might be the problem?

    Thanks
    check your cache folder and check what the myDEBUG log files have to tell you.

 

 
Page 34 of 40 FirstFirst ... 243233343536 ... LastLast

Similar Threads

  1. Quick Help With Glacial Age Template
    By andycowboy in forum Addon Templates
    Replies: 3
    Last Post: 29 Dec 2011, 02:19 PM
  2. Glacial Age help
    By zbdude in forum Addon Templates
    Replies: 3
    Last Post: 10 Jul 2010, 07:05 PM
  3. Glacial Age V2.0 Template
    By irishshopper in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 19 May 2010, 02:12 PM
  4. Logo Full Width - Glacial Age template
    By RiverCity in forum Addon Templates
    Replies: 2
    Last Post: 6 Jul 2009, 06:54 PM
  5. glacial age template help
    By bubblycrazy in forum General Questions
    Replies: 5
    Last Post: 26 Jan 2009, 01:28 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