Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to move the "what's new?" box from the left-column to the below of the "new product for month"?


zozzoozzz

Recommended Posts

Posted

How to move the "what's new?" box from the left-column to the below of the "new product for month"?

 

and which AND-ON can helps?

 

 

thanks :)

Posted

in your

catalog / includes / colum_left.php find the code that adds it there ... this

 require(DIR_WS_BOXES . 'whats_new.php');

 

And add to the index.php file after this on line 313 ish

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

add it as this

		 </tr>
	  <tr>
		<td><?php require(DIR_WS_BOXES . 'whats_new.php'); ?></td>
	  </tr>

 

it will make the box the same width so might look a bit long there!

You will also need to comment out the code in your colum_left.php

by adding // at the beginning of the code like this

// require(DIR_WS_BOXES . 'whats_new.php');

Nic

Sometimes you're the dog and sometimes the lamp post

[/url]

My Contributions

Posted
in your

catalog / includes / colum_left.php find the code that adds it there ... this

 require(DIR_WS_BOXES . 'whats_new.php');

 

And add to the index.php file after this on line 313 ish

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

add it as this

		 </tr>
	  <tr>
		<td><?php require(DIR_WS_BOXES . 'whats_new.php'); ?></td>
	  </tr>

 

it will make the box the same width so might look a bit long there!

You will also need to comment out the code in your colum_left.php

by adding // at the beginning of the code like this

// require(DIR_WS_BOXES . 'whats_new.php');

Nic

 

 

 

Thanks NIC

 

but whether the product quantity in the what's new box is 1? and how to set the product quantity in the box?

 

 

thank u a lot! :)

Posted
dont think you can from admin, its supposed to only show one, so you will need to alter the code to make it happen

Nic

 

 

 

 

thanks Nic

 

do u mean that if i have to set the product quantity in the what's new box , I have to edit the code?

 

if i have to set the product quantity in the what's new box to 4 ,how to do that? Is it difficult?

 

 

JUN

Archived

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

×
×
  • Create New...