Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Removing Reviews.


SoniCraze

Recommended Posts

Edit the column_right.php file located in catalog/includes.

 

Comment out the following line:

require(DIR_WS_BOXES . 'reviews.php');

 

By changing it to:

//require(DIR_WS_BOXES . 'reviews.php');

Link to comment
Share on other sites

Click on some products and check it. In my installation the "Product Reviews" box is gone from the main page and the "Write a review for this product" box is gone on all of the product pages when I comment out the line I mentioned above.

 

Matt

Link to comment
Share on other sites

Oh wait...I see, you mean the review button. Ok, so now comment out this line in catalog/product_info.php

 

<td class="main"><a href="<?php echo tep_href_link(FILENAME_PRODUCT_REVIEWS, substr(tep_get_all_get_params(), 0, -1)); ?>"><?php echo tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS); ?></a></td>

 

By changing it to:

<!--

<td class="main"><a href="<?php echo tep_href_link(FILENAME_PRODUCT_REVIEWS, substr(tep_get_all_get_params(), 0, -1)); ?>"><?php echo tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS); ?></a></td>

-->

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...