Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

wongo

Pioneers
  • Posts

    8
  • Joined

  • Last visited

Posts posted by wongo

  1. <!--//<?php echo TEXT_ALTERNATIVE_CHECKOUT_METHODS;?></td>	  </tr>//<?php	  reset($initialize_checkout_methods);	  while (list(, $value) = each($initialize_checkout_methods)) {?>	  <tr>		<td>//<?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>	  </tr>	  <tr>		//<td align="right" class="main"><?php echo $value; ?></td>	  </tr>-->

     

    Is this where I would put the // to comment out the lines? I'm not the greatest coder..lol

     

     

     

    Do not use //. The <!-- and --> are the marks that I put in to comment out the lines between them. Alternatively you could delete the lines altogether, but I prefer to leave codes alone in case I need them later.

  2. Steve,

     

    I had the same problem. Just comment out the following lines from catalog/shopping_cart.php.

     

    <!--
    <?php 
    echo TEXT_ALTERNATIVE_CHECKOUT_METHODS;
    ?>
    
    </td>
         </tr>
    
    <?php
         reset($initialize_checkout_methods);
         while (list(, $value) = each($initialize_checkout_methods)) {
    ?>
         <tr>
           <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
         </tr>
         <tr>
           <td align="right" class="main"><?php echo $value; ?></td>
         </tr>
    -->
    

×
×
  • Create New...