Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Move new Products Box


Guest

Recommended Posts

Hi, This is my first post to this forum. I am wanting to move the "New Products for 'Current Month Here'" BOX to the top of the index.php page. Currently, I have the "Welcome Guest" and then some text I added to the site and THEN the New Products Box.

 

Any suggestions on how to move it or on how to change the order of appearance?

 

Thank you,

 

Stephen Paul

Link to comment
Share on other sites

check the index.php file and finde include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); . i think you want to comment this out.

 

//include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS);

DJS

Link to comment
Share on other sites

Sorry, I must not have made myself clear. I do not want to delete the default "New Products For November." I want to move it to the top of the page so it is the first thing visitors see immediately after the text:

 

"Welcome Guest! Would you like to log yourself in? Or would you prefer to create an account?"

 

Any help is appreciated! Thanks in advance!

 

-Stephen Paul

Link to comment
Share on other sites

finad echo tep_customer_greeting(); on index.php then add include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); with it.

 

if you want more clarification please contact ...

 

find:

<?php echo tep_customer_greeting();  ?>

 

modify as:

 

<?php echo tep_customer_greeting();  include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?>

DJS

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...