John Posted February 11, 2003 Share Posted February 11, 2003 I am developing an online book downloadable store. I require only customer first name, last name and Email address during checkout payment phase. I dont require the customers complete address during this phase. Please help me how I can change the complete billing and shipping address of customers with only their first name,last name and email address in checkout process. Please please help me. Link to comment Share on other sites More sharing options...
mattice Posted February 11, 2003 Share Posted February 11, 2003 You will simply need to rip it all out of the pages. There are some contributions that give further control on things, but none does exactly what you need. It will require plain old hacking into the code.... Mattice "Politics is the art of preventing people from taking part in affairs which properly concern them" Link to comment Share on other sites More sharing options...
♥Loaded Commerce Posted February 11, 2003 Share Posted February 11, 2003 http://www.oscommerce.com/community/contributions,692 HTH Best Regards, Salvatore Iozzia Loaded Commerce - Oscommerce - All Loaded Up. Link to comment Share on other sites More sharing options...
mattice Posted February 11, 2003 Share Posted February 11, 2003 That's the one I meant... but it is only signup, it doesn't touch address_book, admin side, checkout etc. It's a start though :D "Politics is the art of preventing people from taking part in affairs which properly concern them" Link to comment Share on other sites More sharing options...
♥Loaded Commerce Posted February 11, 2003 Share Posted February 11, 2003 I was thinking and thinking about this problem and the idea of hack-o-rama came to mind. also the idea of simply stating that sometimes a person shoudl pay a php programmer to make such sweeping custimizations. But then I remembered the contribution. so we where all saved. Best Regards, Salvatore Iozzia Loaded Commerce - Oscommerce - All Loaded Up. Link to comment Share on other sites More sharing options...
Guest Posted February 11, 2003 Share Posted February 11, 2003 I think this contribution has a small bug in it! on line 303 this need changing: $crypted_password = crypt_password($HTTP_POST_VARS['password']); to this: $crypted_password = tep_encrypt_password($HTTP_POST_VARS['password']); Link to comment Share on other sites More sharing options...
John Posted February 12, 2003 Author Share Posted February 12, 2003 Please tell me the query or code that can be used in the checkout_payment.php page to fetch and display the customer information(first name, last name and email address from the customers table in the billing address location instead of displaying information from the address_book table. Link to comment Share on other sites More sharing options...
Guest Posted February 12, 2003 Share Posted February 12, 2003 I'm trying to figure that one out too. I want the billing address. etc right underneath the credit card info, I got everthing listed and the customer can fill it out and send but I can't see it in admin so I'm not doing something right. :? Link to comment Share on other sites More sharing options...
mattice Posted February 12, 2003 Share Posted February 12, 2003 Please tell me the query or code that can be used in the checkout_payment.php page to fetch and display the customer information(first name, last name and email address from the customers table in the billing address location instead of displaying information from the address_book table. It's available from the order object. Checkout catalog/includes/classes/order.php "Politics is the art of preventing people from taking part in affairs which properly concern them" Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.