I am setting up a store to allow guests to place courier pickups and deliveries, and so far looking like it will pretty much work as I would like it to... The idea is we want to be able to let customers enter a Pick Up address (Billing side), and then a Deliver To address (Shipping side) and this seems to work.
I have noticed that when I enter a Pickup (Billing) address, the pattern only applies to the Billing side, and not the Deliver To (Shipping) side, and after I enter the Billing and Shipping Zip codes, the Billing Zip Code does not display on the Billing side but rather shows on the Shipping side above the Shipping Zip Code...
Also, while in PayPal sandbox mode, order status stays in pending.
Billing Zip Code Displays on the Shipping side
- shibumi
- Phoca Enthusiast
- Posts: 97
- Joined: 11 Sep 2016, 22:22
- Jan
- Phoca Hero
- Posts: 48402
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Billing Zip Code Displays on the Shipping side
Hi,
Paypal - status is changed by order status change and you can set in Payment method - PayPal options when the order status is changed. Try to enable logging and test if PayPal server contacted your server after payment to change the order status.
Billing and Shipping - can you paste a screenshot or video to understand what do you exactly mean?
Jan
Paypal - status is changed by order status change and you can set in Payment method - PayPal options when the order status is changed. Try to enable logging and test if PayPal server contacted your server after payment to change the order status.
Billing and Shipping - can you paste a screenshot or video to understand what do you exactly mean?
Jan
If you find Phoca extensions useful, please support the project
- shibumi
- Phoca Enthusiast
- Posts: 97
- Joined: 11 Sep 2016, 22:22
- Jan
- Phoca Hero
- Posts: 48402
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Billing Zip Code Displays on the Shipping side
Hi, thank you, now I understand.
billing zip - will be fixed in next version.
Thank you, Jan
billing zip - will be fixed in next version.
Thank you, Jan
If you find Phoca extensions useful, please support the project
- shibumi
- Phoca Enthusiast
- Posts: 97
- Joined: 11 Sep 2016, 22:22
Re: Billing Zip Code Displays on the Shipping side
Thanks Jan! ETA?
- Jan
- Phoca Hero
- Posts: 48402
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Billing Zip Code Displays on the Shipping side
Hi, unfortunately, there is no ETA, now Phoca Cart is in RC so the stable should be released soon.
For quick fix (it is in fact simple typo error), open:
administrator/components/com_phocacart/libraries/phocacart/user/user.php
and on line cca 412, change from:
to:
Jan
For quick fix (it is in fact simple typo error), open:
administrator/components/com_phocacart/libraries/phocacart/user/user.php
and on line cca 412, change from:
Code: Select all
$o['s'] .= '<div class="'.$s['c']['col.xs12.sm12.md12'].'">'.$value.'</div>';
Code: Select all
$o['b'] .= '<div class="'.$s['c']['col.xs12.sm12.md12'].'">'.$value.'</div>';
If you find Phoca extensions useful, please support the project