Guest Posted September 1, 2005 Share Posted September 1, 2005 How can i delete the referances to physical addresses on the checkout since my store sells via credit card and customers instanty download the products? I would like it to completely skip the 'Payment Information' page and on the confirmation page i just want to top table that shows all the products in the shopping cart. The table below it i want completely gone since it refers to a physical address and a choice of payment options when i only have one payment option. How would i do this? What pages are the tables on? Link to comment Share on other sites More sharing options...
Guest Posted September 1, 2005 Share Posted September 1, 2005 Also i want to get rid of the text at the bottom saying Delivery Information Payment Information Confirmation Finished! Link to comment Share on other sites More sharing options...
♥Monika in Germany Posted September 1, 2005 Share Posted September 1, 2005 Also i want to get rid of the text at the bottom saying Delivery Information Payment Information Confirmation Finished! <{POST_SNAPBACK}> thisone is easy, on all checkout pages, get rid of that whole passage creating the bullet and the ruler ... comment it out with <?php /* .... */ ?> this is what you need to comment out: <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td width="25%"><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td width="50%" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'checkout_bullet.gif'); ?></td> <td width="50%"><?php echo tep_draw_separator('pixel_silver.gif', '100%', '1'); ?></td> </tr> </table></td> <td width="25%"><?php echo tep_draw_separator('pixel_silver.gif', '100%', '1'); ?></td> <td width="25%"><?php echo tep_draw_separator('pixel_silver.gif', '100%', '1'); ?></td> <td width="25%"><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td width="50%"><?php echo tep_draw_separator('pixel_silver.gif', '100%', '1'); ?></td> <td width="50%"><?php echo tep_draw_separator('pixel_silver.gif', '1', '5'); ?></td> </tr> </table></td> </tr> <tr> <td align="center" width="25%" class="checkoutBarCurrent"><?php echo CHECKOUT_BAR_DELIVERY; ?></td> <td align="center" width="25%" class="checkoutBarTo"><?php echo CHECKOUT_BAR_PAYMENT; ?></td> <td align="center" width="25%" class="checkoutBarTo"><?php echo CHECKOUT_BAR_CONFIRMATION; ?></td> <td align="center" width="25%" class="checkoutBarTo"><?php echo CHECKOUT_BAR_FINISHED; ?></td> </tr> </table></td> </tr> :-) Monika addicted to writing code ... can't get enough of databases either, LOL! my toolbox: Textpad - Compare and Merge - phpMyAdmin - WS_FTP - Photoshop - How to search the forum Interactive Media Award July 2007 ~ category E-Commerce my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ... Link to comment Share on other sites More sharing options...
♥Monika in Germany Posted September 1, 2005 Share Posted September 1, 2005 How can i delete the referances to physical addresses on the checkout since my store sells via credit card and customers instanty download the products? I would like it to completely skip the 'Payment Information' page and on the confirmation page i just want to top table that shows all the products in the shopping cart. The table below it i want completely gone since it refers to a physical address and a choice of payment options when i only have one payment option. How would i do this? What pages are the tables on? <{POST_SNAPBACK}> depending on your payment module, you WILL need a physical delivery address, even for downloadable products. So the variables and session IDs have to be filled anway. There is a way not to show the page sand still fill the variables, but it would be custom coding with your very own data and info. I just did this recently for a client who only has 1 payment module and no shipping involved, using protx as gateway. :-) Monika addicted to writing code ... can't get enough of databases either, LOL! my toolbox: Textpad - Compare and Merge - phpMyAdmin - WS_FTP - Photoshop - How to search the forum Interactive Media Award July 2007 ~ category E-Commerce my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ... Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.