Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

I dont need no shipping confirmation ;)


Guest

Recommended Posts

Hey! 1st let me just say thanks for an incredible project people, wow!

 

Well, ok, i run a website selling premade designs, for shopping cart i choose you 8)

 

I e-mail the bought products, i dont ship them by any method either than online e-mail or ftp.

 

What i need is to open checkout_shipping.php, remove the Shipping adress box, and put in some words of my own (in a possible example just state BLABLABLA as where the text will be.)

 

Thanks a lot for reading!

Link to comment
Share on other sites

Hi,

 

Open catalog/checkout_shipping.php and around line 221 change

 

<td><table border="0" width="100%" cellspacing="0" cellpadding="2">

             <tr>

               <td><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> 

               <td class="main" width="50%" valign="top"><?php echo TEXT_CHOOSE_SHIPPING_DESTINATION . '<br><br><a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING_ADDRESS, '', 'SSL') . '">' . tep_image_button('button_change_address.gif', IMAGE_BUTTON_CHANGE_ADDRESS) . '</a>'; ?></td>

               <td align="right" width="50%" valign="top"><table border="0" cellspacing="0" cellpadding="2">

                 <tr>

                   <td class="main" align="center" valign="top"><?php echo '<b>' . TITLE_SHIPPING_ADDRESS . '</b><br>' . tep_image(DIR_WS_IMAGES . 'arrow_south_east.gif'); ?></td>

                   <td><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> 

                   <td class="main" valign="top"><?php echo tep_address_label($customer_id, $sendto, true, ' ', '<br>'); ?></td>

                   <td><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> 

                 </tr>

               </table></td>

             </tr>

           </table></td>

 

to........

 

        <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_separator('pixel_trans.gif', '10', '1'); ?></td> 

               <td class="main" width="50%" valign="top"><?php echo TEXT_SHIPPING_TAG; ?></td>

               <td align="right" width="50%" valign="top"></td>

             </tr>

           </table></td>

         </tr>

       </table></td>

 

Also open catalog/includes/languages/english/checkout_shipping.php and add the following line;

 

define('TEXT_CHECKOUT_TAG', 'BLABLABLA.');

 

Back up before you try!

Reddy to Rumble

 

Thank you osCommerce and all who Contribute to her!

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...