Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Right Column not to display on some pages


iLLuSiOnS

Recommended Posts

Posted

My checkout_payment page needs more room because the middle column content wont fit so I want to remove the right column from JUST my checkout_payment page but no other page, just that page. Is this possible? And if I remove it, do you think that the middle column will automatically stretch out now that it has more space?

 

Thanks

Posted

In /catalog/checkout_payment.php replace this code:

 

<!-- body_text_eof //-->
<td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
<!-- right_navigation //-->
<?php require(DIR_WS_INCLUDES . 'column_right.php'); ?>
<!-- right_navigation_eof //-->
</table></td>
 </tr>
</table>
<!-- body_eof //-->

With:

 

<!-- body_text_eof //-->
<?php
 if ( false ) {
?>
<td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
<!-- right_navigation //-->
<?php require(DIR_WS_INCLUDES . 'column_right.php'); ?>
<!-- right_navigation_eof //-->
</table></td>
<?php
 }
?>
 </tr>
</table>
<!-- body_eof //-->

MAKE A BACKUP FIRST.

 

Doing it this way, the middle column will have room to expand.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

Well, I came here because I just wanted to know how to remove the right column on just the checkout_payment page and no other page.

 

Anyone know how to do this?

Posted
I am actually using cre loaded, so my files dont look like that, darnit

 

What can I do?

Support for CRE Loaded is not offered here.

 

Seek support at their support forum, not here.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Archived

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

×
×
  • Create New...