Results 1 to 10 of 11

Hybrid View

  1. #1
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Hide sidebox on proudct pages?

    Hello everyone, how do I hide the reviews side box on the product page? Thank you!

  2. #2
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Hide sidebox on proudct pages?

    You could customize the reviews.php sidebox with the code:
    Code:
    if (!isset($_GET['products_id'])) {
      $title =  BOX_HEADING_REVIEWS;
      $title_link = FILENAME_REVIEWS;
      require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
    }
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  3. #3
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Re: Hide sidebox on proudct pages?

    Thank you for the response. I added the code to my reviews.php file but it didn't change anything. Any thoughts?

  4. #4
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Hide sidebox on proudct pages?

    Check your templates and overrides and make sure that you have added the new code to the file ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  5. #5
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Re: Hide sidebox on proudct pages?

    So do I add this code into the reviews.php file or the tpl file? Thank you.

  6. #6
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Re: Hide sidebox on proudct pages?

    I've placed it in my reviews.php sidebox file. I've tried to move it to different parts of the file but it has no effect. Here's the code:

    PHP Code:
    <?php
    /**
     * reviews sidebox - displays a random product-review
     *
     * @package templateSystem
     * @copyright Copyright 2003-2010 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: reviews.php 16044 2010-04-23 01:15:45Z drbyte $
     */

    // if review must be approved or disabled do not show review
      
    $review_status " and r.status = 1 ";

      
    $random_review_sidebox_select "select r.reviews_id, r.reviews_rating, p.products_id, p.products_image, pd.products_name,
                        substring(reviews_text, 1, 70) as reviews_text
                        from " 
    TABLE_REVIEWS " r, " TABLE_REVIEWS_DESCRIPTION " rd, "
                               
    TABLE_PRODUCTS " p, " TABLE_PRODUCTS_DESCRIPTION " pd
                        where p.products_status = '1'
                        and p.products_id = r.products_id
                        and r.reviews_id = rd.reviews_id
                        and rd.languages_id = '" 
    . (int)$_SESSION['languages_id'] . "'
                        and p.products_id = pd.products_id
                        and pd.language_id = '" 
    . (int)$_SESSION['languages_id'] . "'" .
                        
    $review_status;
    if (!isset(
    $_GET['products_id'])) {
      
    $title =  BOX_HEADING_REVIEWS;
      
    $title_link FILENAME_REVIEWS;
      require(
    $template->get_template_dir($column_box_defaultDIR_WS_TEMPLATE$current_page_base,'common') . '/' $column_box_default);
    }

      if (isset(
    $_GET['products_id'])) {
        
    $random_review_sidebox_select .= " and p.products_id = '" . (int)$_GET['products_id'] . "'";
      }

      
    $random_review_sidebox_product $db->ExecuteRandomMulti($random_review_sidebox_selectMAX_RANDOM_SELECT_REVIEWS);
      if (
    $random_review_sidebox_product->RecordCount() > 0) {
        require(
    $template->get_template_dir('tpl_reviews_random.php',DIR_WS_TEMPLATE$current_page_base,'sideboxes'). '/tpl_reviews_random.php');
      } elseif (isset(
    $_GET['products_id']) and zen_products_id_valid($_GET['products_id'])) {
    // display 'write a review' box
        
    require($template->get_template_dir('tpl_reviews_write.php',DIR_WS_TEMPLATE$current_page_base,'sideboxes'). '/tpl_reviews_write.php');
      } else {
    // display 'no reviews' box
        
    require($template->get_template_dir('tpl_reviews_none.php',DIR_WS_TEMPLATE$current_page_base,'sideboxes'). '/tpl_reviews_none.php');
      }
      
    $title =  BOX_HEADING_REVIEWS;
      
    $title_link FILENAME_REVIEWS;
      require(
    $template->get_template_dir($column_box_defaultDIR_WS_TEMPLATE$current_page_base,'common') . '/' $column_box_default);
    ?>
    Thank you.

  7. #7
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Hide sidebox on proudct pages?

    Not quite ...

    If you look at the bottom of the file, you will see the code:
    Code:
      $title =  BOX_HEADING_REVIEWS;
      $title_link = FILENAME_REVIEWS;
      require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
    The code change is to surround that existing code with IF statement that is written in RED ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  8. #8
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Re: Hide sidebox on proudct pages?

    Haha! Thank you! It worked!

 

 

Similar Threads

  1. Hide sidebox product quantity
    By suzzylou in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 29 Apr 2010, 01:14 PM
  2. Hide/Display Pages
    By olen1009 in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 24 Mar 2009, 10:37 PM
  3. Main page featured proudct description
    By ryanb4614 in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 21 Jan 2009, 01:57 AM
  4. hide sidebox from lurkers
    By MB1 in forum Addon Sideboxes
    Replies: 9
    Last Post: 19 May 2008, 06:52 AM
  5. Sidebox Hide/Visible
    By AdamBoyle in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 16 Jul 2006, 02:09 PM

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