Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

soldsep

Archived
  • Posts

    6
  • Joined

  • Last visited

Profile Information

  • Real Name
    Paul

soldsep's Achievements

  1. Yes, that fixed it. Change ob_clean back to ob_end_clean. BTW: Anyone know why ob_clean is appropriate and better performing then ob_end_clean? All I know is ob_end_clean turns off output buffering after it erases it. When viewing the page source I can see this code <!-- start cartbox //--> <img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td> </tr> <tr> <td class="boxText">0 items</td> </tr> <tr> <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"> <!-- end cartbox //--> Where do I go to edit that code? I would like to get rid of the pixel_trans.gif on the top and the bottom of every box.
  2. Could it be the fact that we are now using ob_clean instead of ob_end_clean? I'll test it out.
  3. Now what is it about 4.5.6 that broke it? BTW $tablestart = strpos($tmpstr, "<td>"); Did not fix the problem for me either. I don't think that is the problem considering they left out the last bracket so that it can include the class="". This line was also changed in 4.5.5 (catalog/includes/functions/sts.php). $tmpstr = substr($tmpstr, strpos ($tmpstr,">",$tablestart)+1); // strip off stuff before (and including <td>, v4.5.5 replaced that with this: $tmpstr = substr($tmpstr, $tablestart+4) That didn't fix it either. So what was changed in .6?
  4. With INFOBOX Template Off: <!-- start categorybox //--> <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td height="14" class="infoBoxHeading"><img src="images/infobox/corner_left.gif" border="0" alt="" width="11" height="14"></td> <td width="100%" height="14" class="infoBoxHeading">Categories</td> <td height="14" class="infoBoxHeading" nowrap><img src="images/pixel_trans.gif" border="0" alt="" width="11" height="14"></td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="1" class="infoBox"> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="3" class="infoBoxContents"> <tr> <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td> </tr> With INFOBOX Template On: <!-- start categorybox //--> <img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td> </tr> Can anyone point me to where I can fix this problem?
×
×
  • Create New...