Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Move boxes between columns


Guest

Recommended Posts

Posted

I have seen how to add new boxes, how to remove boxes, how to customize the boxes you currently have, but I haven't been able to find anything on how to move them from one column to the other.

 

I tried guessing based on what I had read, but I ended up with fatal errors. Can anyone point me in the right direction?

 

Thanks.

Posted

You should be able to just move the appropriate require

 

i.e. require(DIR_WS_BOXES . 'whats_new.php');

 

from

 

catalog/includes/column_left.php

 

to

 

catalog/includes/column_right.php

 

 

Tom

Posted

And order them as you wish

 

i.e. require(DIR_WS_BOXES . 'whats_new1.php');

i.e. require(DIR_WS_BOXES . 'whats_new2.php');

i.e. require(DIR_WS_BOXES . 'whats_new3.php');

 

 

Can be

i.e. require(DIR_WS_BOXES . 'whats_new2.php');

i.e. require(DIR_WS_BOXES . 'whats_new3.php');

i.e. require(DIR_WS_BOXES . 'whats_new1.php');

Contributions I used : Updated 06-13-04 23:42

----------------

Vote on My Graphis Poll

Posted

Of course it would be something really simple. I am completely clueless :unsure: when it comes to PHP, so I will keep learning and reading.

 

Thanks for the quick responses!!!

Archived

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

×
×
  • Create New...