Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

New to all this and need some help


KJexotics

Recommended Posts

Posted

I need some help, i know how i would like my site to show b ut i dont know how to carry it out. ???

 

I would like to have a row of links under the banner for starters, and this takes you to a page like shipping information, how do i make another page like that where there is no items for sale ?? So i like can make a FAQ page and stuff ??

 

I would also like to make my shop into a nice width so it does not go accross the page, if some one wants me to PM them a link to a shop i would like my shop like i can do, any help please.

 

Kieron

Posted

You will need to edit the file catalog/includes/header to place a nav bar across the top of your page.

To add pages simply create a new page in the root directory 'catalog' then edit it as you wish. Include a link to this page on your nav bar.

To contain the width of your page use the style.css sheet.

Lloyd

Posted
To contain the width of your page use the style.css sheet.

 

Can you tell me more how to do this what part of the code to edit or add ???

Posted

The first thing you should do is backup your store and database. Make a complete copy of all your files and save them. Then back up the database in your Admin panel.

 

I have found a good way to change layout is create an html page then make it look like I want using a style sheet. Most times I can then copy the html code into pages like header, footer, column right and left.

 

Do you know html and style sheets? If not then you might consider learning it if you want to run an online stor

 

Please do not PM me again unless you are willing to pay.

Personally I do not mind helping someone out. But what you are asking is me to create your store on this end then walk you thru the changes.

 

Figure it out then when you run into problems, post the specific problem.

 

To contain the width of your page you will need to add a style to your style sheet.

Something like:

.main_container {width:930px}

 

Then place the <div> tag after the <body> tag on your pages.

<body>

<div class="main_container">

 

You will need to place the ending tag for this class before the closing tag of the <body>

</div>

</body>

 

There are contributions available that do this, I do not know the name of them but you may try cruising through the contribution section and try the other forum Installation and Configuration as well.

Lloyd

Posted

Thanks for your help, sorry for PM'ing you you did not say dont PM.

 

Thanks for your help, i found one on the contribution section.

 

Another question is how do i get rid off the so many requests since ??? part i want to change that too add to fav link ???

 

Another question as well is how do i get rid off the image on the main screen that is next to shopping cart on the left it has a little person on a cash thing.

Posted
Thanks for your help, sorry for PM'ing you you did not say dont PM.

 

Thanks for your help, i found one on the contribution section.

 

Another question is how do i get rid off the so many requests since ??? part i want to change that too add to fav link ???

 

Another question as well is how do i get rid off the image on the main screen that is next to shopping cart on the left it has a little person on a cash thing.

You can search for the answers to your questions.

Posted
Another question is how do i get rid off the so many requests since ??? part i want to change that too add to fav link ???

 

Another question as well is how do i get rid off the image on the main screen that is next to shopping cart on the left it has a little person on a cash thing.

 

Did you backup your files?

 

The footer text is change on the page:

catalog/includes/footer.php

To remove the 'Requests since...'

Remove the following lines of code:

 

<table border="0" width="100%" cellspacing="0" cellpadding="1">

<tr class="footer">

<td class="footer">  <?php echo strftime(DATE_FORMAT_LONG); ?>  </td>

<td align="right" class="footer">  <?php echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?>  </td>

</tr>

</table>

 

To remove the icon go to the index.php page in the catalog directory.

Look around line 291 for this line of code:

<td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

 

Change to this:

<td class="pageHeading" align="right"> </td>

Lloyd

Posted

Thanks for your help and i did search.

 

Now i have hit a problem, in header.php there is no image code for banner, it is meant to be

tep_image(DIR_WS_IMAGES . 'oscommerce.gif', 'osCommerce')

 

But it not there, any reason why ???

 

EDIT: dont matter found it as a diffrent code, the logo too large now tho the code is, do you know how to add width and hight i dont know php code that well.

<td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'logo.gif', STORE_NAME) . '</a>'; ?></td>

Posted

Thanks for that it is alot of help thanks.

 

One thing is how do i get rid off the pictures in each cat on the left off the screen ?? E.g. this one took out the one on the main screen ??

 

To remove the icon go to the index.php page in the catalog directory.

Look around line 291 for this line of code:

<td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

 

Change to this:

<td class="pageHeading" align="right"> </td>

Archived

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

×
×
  • Create New...