Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

A small change on frontpage?


Guest

Recommended Posts

Posted

Hello

 

Can someone please help me move the "New Products for..." up in top of the frontpage. I don?t want the welcome-messages" to be shown. I know it?s something to do with the Index.php but where, what and HOW ???

 

I hope someone will help me. Thank you in advance.

 

Best regards

 

Snap2.gif

Posted
Hello

 

Can someone please help me move the "New Products for..." up in top of the frontpage. I don?t want the welcome-messages" to be shown. I know it?s something to do with the Index.php but where, what and HOW ???

 

I hope someone will help me. Thank you in advance.

 

Best regards

 

Snap2.gif

 

look in wwwroot/index.php and then search for // default page. then just remove some tags you'll see what tags.

Posted
look in wwwroot/index.php and then search for // default page. then just remove some tags you'll see what tags.

 

Thank you pal

:thumbsup:

Posted

index.php

change

<table border="0" width="100%" cellspacing="0" cellpadding="0">
  <tr>
	<td><table border="0" width="100%" cellspacing="0" cellpadding="0">
	  <tr>
		<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>
		<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>
	  </tr>
	</table></td>
  </tr>
  <tr>
	<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
  </tr>
  <tr>
	<td><table border="0" width="100%" cellspacing="0" cellpadding="0">
	  <tr>
		<td class="main"><?php echo tep_customer_greeting(); ?></td>
	  </tr>
	  <tr>
		<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
	  </tr>
	  <tr>
		<td class="main"><?php echo TEXT_MAIN; ?></td>
	  </tr>
	  <tr>
		<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
	  </tr>
	  <tr>
		<td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td>
	  </tr>
<?php
include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS);
?>
	</table></td>
  </tr>
</table>

to

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


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


	  <tr>
		<td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td>
	  </tr>
<?php
include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS);
?>
	</table></td>
  </tr>
</table>

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Archived

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

×
×
  • Create New...