ChrisJChrisJ Posted June 13, 2005 Posted June 13, 2005 On the checkout_payment.php page, there is a box and with the title: Add Comments About Your Order". How/where would I remove the box and Title? Thanks.
OceanRanch Posted June 13, 2005 Posted June 13, 2005 Find the following code in catalog/checkout_payment.php around line 317 <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="main"><b><?php echo TABLE_HEADING_COMMENTS; ?></b></td> </tr> </table></td> </tr> and remove it. HTH Tom
ChrisJChrisJ Posted June 14, 2005 Author Posted June 14, 2005 Find the following code in catalog/checkout_payment.php around line 317 ? ? ? <tr> ? ? ? ?<td><table border="0" width="100%" cellspacing="0" cellpadding="2"> ? ? ? ? ?<tr> ? ? ? ? ? ?<td class="main"><b><?php echo TABLE_HEADING_COMMENTS; ?></b></td> ? ? ? ? ?</tr> ? ? ? ?</table></td> ? ? ?</tr> and remove it. HTH Tom <{POST_SNAPBACK}> Thanks for your reply and assistance.
koconnor00 Posted June 15, 2005 Posted June 15, 2005 <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="main"><b><?php echo TABLE_HEADING_COMMENTS; ?></b></td> </tr> </table></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> <tr class="infoBoxContents"> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td><?php echo tep_draw_textarea_field('comments', 'soft', '60', '5'); ?></td> </tr> </table></td> </tr> </table></td> </tr> Finding and removing the above code should remove the comments box also. It seems to work ok for me. Kevin.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.