ChrisJChrisJ Posted June 13, 2005 Posted June 13, 2005 At the bottom of each Product Description there is a selection Button on the left for "Reviews" and on the right for "Add to Cart" how/where do I remove (or comment-out) the Reviews choice? Thanks.
krnl Posted June 13, 2005 Posted June 13, 2005 in .../catalog/product_info.php comment out the following line right after the <?php tag using two forward slashes. <td class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '">' . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>'; ?></td> like this: <td class="main"><?php // echo '<a href="' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '">' . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>'; ?></td>
Recommended Posts
Archived
This topic is now archived and is closed to further replies.