Guest Posted July 18, 2003 Share Posted July 18, 2003 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 More sharing options...
Rumble Posted July 18, 2003 Share Posted July 18, 2003 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 More sharing options...
Guest Posted July 18, 2003 Share Posted July 18, 2003 youtch, that doesent work, is that for Milestone 2 ? Link to comment Share on other sites More sharing options...
Rumble Posted July 18, 2003 Share Posted July 18, 2003 No it was milestone 1 but paste your checkout_shipping.php page and i'll edit it (not the language file!) Reddy to Rumble Thank you osCommerce and all who Contribute to her! Link to comment Share on other sites More sharing options...
Guest Posted July 18, 2003 Share Posted July 18, 2003 fixed with some fidling ;) thanks for the hints!!! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.