Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Need help finding the right contribution or....


theliquidzoo

Recommended Posts

Just wondering if there is a cont. or a way that I can have 2 product boxes(such as the New products one in the center)to my site. I am selling saltwater stuff, so I would like to have a featured products for the fish, and then underneath it I would like to put one for corals.

 

I used the featured products contribution, but it basically replaces the new products box. Where I was hoping it was going to add it underneath the new products box..

 

Thank You for any assistance or links.. :thumbsup:

Link to comment
Share on other sites

you can add as many modules as you want using your catalog\index.php. Basically you will see there (near the end of the file)

 

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

 

So if you wanted to include more modules just add them beneath. For example to show the new products 3 times

 

		  <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>
	  <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>
	  <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>
	  <tr>
		<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
	  </tr>

so you can place whatever modules you want.

Link to comment
Share on other sites

thanks a bunch works great.

1 problem though. I want to change the name of the actual box To new Corals or featured corals.

also it just duplicates whatever is in the original box on top including images. I would like to put 2 different images in the boxes..

Thanks though. I like that it keeps the same colors as the box.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...