Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted

Hello,

 

I just installed Featured Products 1.5.9. The install went well and it worked as stated. What I am wondering, is there a way I can make the featured products area on my homepage look like it did when it was new products?

 

My new products area was formated with some tables and I would like the make the featured products area look the same.

 

Is there a way to change new_products.php into featured.php?

 

Thanks so much for you help!

 

Surferboy

  • 1 month later...
Posted

Hi, I would like to know this too! I want to change it to 2 rows of 3 products. Any clues?

 

Cheers,

Leah :)

  • 2 weeks later...
Posted

I am also woundering how this is done.. I cant seem to find the support tread for this contribution either.. :(

Posted

the support thread of Featured Products http://www.oscommerce.com/forums/index.php?showtopic=75061&st=60

 

you may miss the following lines in " catalog/index.php "

 

<tr>

<td><?php include(DIR_WS_MODULES . FILENAME_FEATURED); ?></td>

</tr>

 

see below . it works for me. hope it would work for you too.

 

......quoted from Nicko ......

 

In file

 

catalog/index.php

 

about line 350 must have this code to display the "New products on month.." module:

 

 

CODE

<tr>

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

</tr>

 

 

is possible you hace instead this the code to display the featured products duplicate:

 

 

CODE

<tr>

<td><?php include(DIR_WS_MODULES . FILENAME_FEATURED); ?></td>

</tr>

<tr>

<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

</tr>

<tr>

<td><?php include(DIR_WS_MODULES . FILENAME_FEATURED); ?></td>

</tr>

 

 

only need one and restore the new products module:

 

 

CODE

<tr>

<td><?php include(DIR_WS_MODULES . FILENAME_FEATURED); ?></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>

 

good luck ,

 

jason

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...