buddyholly Posted January 14, 2005 Posted January 14, 2005 I personally don't like 3-column design. What would be the easiest way to change it??? I want the operating panel to be on the left and working space on the right. What is the best way to do it?
Guest Posted January 14, 2005 Posted January 14, 2005 http://www.oscommerce.info/kb/osCommerce/Catalog_Area/Boxes The_Bear
buddyholly Posted January 18, 2005 Author Posted January 18, 2005 http://www.oscommerce.info/kb/osCommerce/Catalog_Area/Boxes The_Bear <{POST_SNAPBACK}> Thank you! I found this page http://www.oscommerce.info/kb/osCommerce/C...g_Area/Boxes/65 and as it said deleted all <?php require DIR_WS_INCLUDES . 'column_right.php'); ?> and there were so many of them. The right column disappeared but now I have this problem: I can't find shopping cart. What am i to do to get it back & place it to the left column??? :(
PetterK Posted January 18, 2005 Posted January 18, 2005 Copy line: require(DIR_WS_BOXES . 'shopping_cart.php'); from catalog/includes/column_right.php to catalog/includes/column_left.php :thumbsup: Petter - Arktisk Pudder
PetterK Posted January 18, 2005 Posted January 18, 2005 ...and as an extra feature, to display cart only after an item is added use this: $cart_contents_string = ''; if ($cart->count_contents() > 0) { require(DIR_WS_BOXES . 'shopping_cart.php'); } :-" Petter - Arktisk Pudder
buddyholly Posted January 21, 2005 Author Posted January 21, 2005 Thank you very much!!! I started doing what you advised. This is exactly what I needed, just required more time to fix than I thought. :'( Thanks again
Recommended Posts
Archived
This topic is now archived and is closed to further replies.