Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I change my first page


dawndmd

Recommended Posts

Hi, I am a first time OS Commerce user. I am familiar wit HTML but this coding for the shopping cart is a little confusing. I would like to get rid of the information on the default page. I know where to do to edit, but I am not sure how to edit so that I can add my own images and text to replace the defualt text. Is there a general manual on customizing your cart? Thank you for all your help. Dawn My site is www.branicdesigns.com/store

Link to comment
Share on other sites

You need to download the file to edit and use a php editor to make the changes. The file will have a define statement (many of them usually) that looks something like

define('TEXT_MAIN', 'This has text in it.');

You can change the

This has text in it.
part without doing any damage to the php code. It can contain any text or html code you want as long as you proceed any apostrophe's with a backward slash. So, for example
define('TEXT_MAIN', '<tr>
<td>Here is the new text alogn with an image</td>
<img src="some_img.jpg>
</tr>

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

You need to download the file to edit and use a php editor to make the changes. The file will have a define statement (many of them usually) that looks something like
define('TEXT_MAIN', 'This has text in it.');

You can change the part without doing any damage to the php code. It can contain any text or html code you want as long as you proceed any apostrophe's with a backward slash. So, for example

define('TEXT_MAIN', '<tr>
<td>Here is the new text alogn with an image</td>
<img src="some_img.jpg>
</tr>

 

Jack

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...