This topic has 13 replies, 3 voices, and was last updated 8 years, 4 months ago ago by Jack Richardson
Dear Sir
When customer is processing the order, they will need to choose payment way, on the workout page, there is paypal , western union and bank transfer on option list.
When customer click paypal, it will go to payment page, I dont want that because online the payment doesnt include shipping cost yet,and we cant get notification of pending orders either, so How to remove this redirect?
Thanks.
To make it more clear,
if choose paypal, the botton is process to paypal
if choose western union or bank transfer, the bottom is process the order
I want when choosing paypal, the bottom is the same as western union, process the order not process to paypal.
Hello,
This is related to Woocommerce configuration, not to the theme.
You have to contact Woocommerce support regarding your query.
Regards,
Eva Kemp.
thanks do you know where i can contact woocommerce support?
thanks for your information, however i noticed another issue. can you help?
on checkout page, customer can create an account, but only password is required, no email , no name, so when i receive order, i got no way to contact them.
http://a2.qpic.cn/psb?/2ff1dc22-a5a4-4e55-b2bc-7e21117387da/OYCNgec3FRq53H.QTLXXvbtrazUYa4CkKJeW5RLcH9E!/b/dH0BAAAAAAAA&ek=1&kp=1&pt=0&bo=kwPUAJMD1AADCC0!&sce=0-12-12&rf=viewer_311
how to fix this?
Also the billing addresss is only a head, customer cant fill in any thing
thanks a lot
Hello,
Go to Woocommerce > Settings > Accounts > uncheck “Automatically generate username from customer email”.
Best regards,
Jack Richardson.
THANKS I did what you said, now there is username and password, but no place for email
Without customer’s email, we cant get in contact with them
Hello,
Email address is present in Billing fields http://prntscr.com/boowjv and you can find it in Orders section after order is completed.
Also if you activate other theme you’ll see the same fields (only username and password for account creation), so it’s Woocommerce configuration, not the theme.
Regards,
Eva Kemp.
thanks, but months ago you helped me remove billing address, can i have it back then?
Hello,
You have this code in theme functions.php file:
<?php
add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
function custom_override_checkout_fields( $fields ) {
unset($fields['billing']['billing_first_name']);
unset($fields['billing']['billing_last_name']);
unset($fields['billing']['billing_company']);
unset($fields['billing']['billing_address_1']);
unset($fields['billing']['billing_address_2']);
unset($fields['billing']['billing_city']);
unset($fields['billing']['billing_postcode']);
unset($fields['billing']['billing_country']);
unset($fields['billing']['billing_state']);
unset($fields['billing']['billing_phone']);
// unset($fields['order']['order_comments']);
unset($fields['billing']['billing_address_2']);
unset($fields['billing']['billing_postcode']);
unset($fields['billing']['billing_company']);
unset($fields['billing']['billing_last_name']);
unset($fields['billing']['billing_email']);
unset($fields['billing']['billing_city']);
return $fields;
}
?>
Remove it to get back Billing fields on Checkout page.
Best regards,
Jack Richardson.
thanks problem is sorted
Hello,
You’re welcome.
Best regards,
Jack Richardson.
The issue related to '‘Check out Page Paypal Redirect Remove’' has been successfully resolved, and the topic is now closed for further responses