manHa Posted August 26, 2008 Share Posted August 26, 2008 Hi,How can we remove the shipping and billing addresses from the member registration page, the "my account page" etc.?I sell digital goods and I have no need of these informations since Paypal provides them.Thanks. Link to comment Share on other sites More sharing options...
Damien Metzger Posted August 27, 2008 Share Posted August 27, 2008 Hi,We do agree that the shipping address is not needed, but at least one is needed for billing.Removing these addresses is too big a modification to be done for the next release sorry. Link to comment Share on other sites More sharing options...
msauter Posted August 28, 2008 Share Posted August 28, 2008 Hi,Is it correct that there is no possibility to turn off seperate shipping and billing addresses? Our client prefers one single address per order only.Thanks for a quick reply.Martin Link to comment Share on other sites More sharing options...
dougwilson99 Posted September 23, 2008 Share Posted September 23, 2008 I also need to turn off the shipping address, billing address is okay to keep on, but my products do not get shipped...is there a way of achieving this? Link to comment Share on other sites More sharing options...
Damien Metzger Posted September 23, 2008 Share Posted September 23, 2008 Hi,You just have to modify the template, deleting a few lines in the right file... Link to comment Share on other sites More sharing options...
basar67 Posted April 25, 2009 Share Posted April 25, 2009 Hello,to wrestle the shipping, you have to make the following changes:open YourServer/order.php and find following code: /* 4 steps to the order */ switch (intval($step)) { case 1: displayAddress(); break; case 2: if(Tools::isSubmit('processAddress')) processAddress(); autoStep(2); displayCarrier(); break; case 3: if(Tools::isSubmit('processCarrier')) processCarrier(); autoStep(3); checkFreeOrder(); displayPayment(); break; default: $smarty->assign('errors', $errors); displaySummary(); break; } and replace it with following code: /* 4 steps to the order */ switch (intval($step)) { case 1: displayAddress(); break; case 2: displayPayment(); break; default: $smarty->assign('errors', $errors); displaySummary(); break; } So now the query shipping off!Now you have edit the 'back' an 'Other payment methods' links in followed files:open YourTheme/order-payment.tpl find the following code and replace the step value to 1: « {l s='Previous'} open modules/YourPaymentModule/payment_execution.tpl find the following code and replace the step value to 2: {l s='Other payment methods' mod='bankwire'} hope I could help you... Link to comment Share on other sites More sharing options...
Recommended Posts