If you pull my changes they should fix this issue.
If you pull my changes they should fix this issue.
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
How do I set up the AP in FedEx? This may sound dumb. I created an API in account in FedEx using our account number.
Follow the instructions here:
https://github.com/scottcwilson/zenc...n-Instructions
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
I currently have ground, express, and LTL freight enabled on the plug in.
Sometimes only ground and express will show and at other times only freight will show depending on the weight.
I need to configure this so that all options will show all the time.
Reason being because in most cases I can either "Split in to boxes" or ship an entire pallet.
Thanks in advance
Not sure this is possible.
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
I just noticed a bug. Not sure it is from the FedEx plug-in, or paypal express checkout, or OPC.
So if I used the paypal express checkout button to checkout in the shopping cart page, during the shipping method selection (it is the traditional 3-page checkout), I can see both FedEx 2day and 2day saturday delivery. But if I selected 2day saturday delivery, in the next page, it will display the regular fedex 2day, not saturday delivery. The quote is the same as non-saturday delivery option.
There is no such issue under the OPC one-page checkout.
Here is what I found.
If I force sort the result from high price to low, there is no such issues. I can select both regular 2 day or saturday 2day. But if I sort the result from low price to high, the issue shows up.
Here is my code to sort the result.
if (!function_exists('fedex_sort_Price')) {
function fedex_sort_Price ($a, $b) {
$c=(float)$a['cost'];
$d=(float)$b['cost'];
if ($c==$d) return 0;
return ($c>$d?1:-1);
}}
Then above the line " $quotes['methods'] = $methods;", add
usort($methods,'fedex_sort_Price');
Again, this mod works fine with OPC one-page checkout. This issue/bug only affect the 3-page checkout.
One more update...
I did some tests. So if the Saturday delivery option is displayed below the regular non-sat method (like low to high sorting) the Sat option will be changed to the non-sat option in the next page automatically. But if the Saturday is displayed above the regular method (like high to low sorting), both options can be selected.
From my chrome developer tool, for both options, they have a different id, title and class.
This issue affects all Sat delivery methods, such as 2day and priority overnight.
I have no clues for now. The strange part is, OPC works perfectly fine but not 3-page checkout (paypal express checkout)!
Bookmarks