mynotes Posted August 3, 2011 Posted August 3, 2011 Hello I'm using oscommerce version 2.3.1. How can I remove 'reviews' box on right column? the default installation have this on my right column: shopping cart specials reviews currencies And I want to remove to become like this shopping cart specials currencies thanks. mynotes
vishalchauhan Posted August 3, 2011 Posted August 3, 2011 So simple dear go to catalog/admin click on modules-> click on boxes -> you can see boxes name there select review box and click on remove the box will goes to install module and removed from list. Please take backup of your files before do changes suggested by me
mynotes Posted August 3, 2011 Author Posted August 3, 2011 So simple dear go to catalog/admin click on modules-> click on boxes -> you can see boxes name there select review box and click on remove the box will goes to install module and removed from list. thank u very much another think I want to do is to put the shopping cart box on the right side of the logo. like this [LOGO image][shopping cart] any suggestions how to accomplish this. thank u mynotes
vishalchauhan Posted August 3, 2011 Posted August 3, 2011 find the cotent in header file <div id="storeLogo"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', STORE_NAME) . '</a>'; ?> add right after that <span id="headerShortcuts"> <?php echo tep_draw_button('Shopping Cart Content : ' . $cart->count_contents(), 'cart', tep_href_link(FILENAME_SHOPPING_CART, '', 'SSL')); ?> </span> so its look like <div id="storeLogo"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', STORE_NAME) . '</a>'; ?> <span id="headerShortcuts"> <?php echo tep_draw_button('Shopping Cart Content : ' . $cart->count_contents(), 'cart', tep_href_link(FILENAME_SHOPPING_CART, '', 'SSL')); ?> </span> </div> as you header file is in includes folder check it. Please take backup of your files before do changes suggested by me
Recommended Posts
Archived
This topic is now archived and is closed to further replies.