Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Remove box header and table cell


gerrard4

Recommended Posts

Hello!

I want to remove the header and header cell of a single box (the information box) but I can't find a sollution. I can get rid of the header by removing

 

$info_box_contents[] = array('text' => BOX_HEADING_INFORMATION);

 

from information.php but the table cell is still there.

I have looked into boxes.php and the code there is pretty much just a blur to me, newbie as I am :blush: .

 

 

Can someone help me out here?

Link to comment
Share on other sites

To remove the header in information.php comment out this section

  $info_box_contents = array();
 $info_box_contents[] = array('text' => BOX_HEADING_INFORMATION);

 new infoBoxHeading($info_box_contents, false, false);

like so

  //$info_box_contents = array();
 //$info_box_contents[] = array('text' => BOX_HEADING_INFORMATION);

 //new infoBoxHeading($info_box_contents, false, false);

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...