Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Remove "Add Comments About Your Order"


ChrisJChrisJ

Recommended Posts

Posted

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.

Posted

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

Posted
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

 

Thanks for your reply and assistance.

Posted

<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.

Archived

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

×
×
  • Create New...