Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

changing layout


gg1965

Recommended Posts

Hello,

 

I have installed oscommerce because my ISP has provided it. But how do i change the layout of an installation - that is, turn off some boxes, or modules, and also change them them from appearing on the left side and have them appear on the right side instead?

 

 

Thanks

 

g

Link to comment
Share on other sites

A great place to start is the Knowledge Base (or KB for short). Check out the information in the 'Documentation' link at the top of the forum pages. It'll get you on your way.

 

HTH,

 

Terry

Terry Kluytmans

 

Contribs Installed: Purchase Without Account (PWA); Big Images, Product Availability, Description in Product Listing, Graphical Infobox, Header Tags Controller, Login Box, Option Type Feature, plus many layout changes & other mods of my own, like:

 

Add order total to checkout_shipment

Add order total to checkout_payment

Add radio buttons at checkout_shipping (for backorder options, etc.)

Duplicate Table Rate Shipping Module

Better Product Review Flow

 

* If at first you don't succeed, find out if there's a prize for the loser. *

Link to comment
Share on other sites

A great place to start is the Knowledge Base (or KB for short). Check out the information in the 'Documentation' link at the top of the forum pages. It'll get you on your way.

 

 

I'm sorry - I tried that and searched for layout and changes and also modules but the results didn't answer my question. is there another word i should search on or is there another answer?

 

 

Thanks

 

 

g

Link to comment
Share on other sites

Terry K has given you the right direction.

 

http://www.oscommerce.info/kb/osCommerce/C...n_and_Layout/54 (for stylesheet)

 

http://www.oscommerce.info/kb/osCommerce/C...g_Area/Boxes/44 (for Box Headings)

 

And many more! :thumbsup:

 

 

P.S. Also search the contribution section for Center Shop or Drop Shadow etc. You'll find more customization components and many extra ideas.

Link to comment
Share on other sites

From the KB:

 

Introduction

 

Boxes can be removed from the left or right hand column by editing the appropriate includes/column_left.php or includes/column_right.php files.

 

Solution

 

Example includes/column_left.php file:

 

 

 

<?php

??require(DIR_WS_BOXES . 'categories.php');

??require(DIR_WS_BOXES . 'manufacturers.php');

??require(DIR_WS_BOXES . 'whats_new.php');

??require(DIR_WS_BOXES . 'search.php');

??require(DIR_WS_BOXES . 'information.php');

?>

 

 

 

 

To remove the What's New box, it's inclusion needs to be commented out or removed entirely:

 

 

 

<?php

??require(DIR_WS_BOXES . 'categories.php');

??require(DIR_WS_BOXES . 'manufacturers.php');

//??require(DIR_WS_BOXES . 'whats_new.php');

??require(DIR_WS_BOXES . 'search.php');

??require(DIR_WS_BOXES . 'information.php');

?>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...