xadapter
Forum Replies Created
-
Forum: Plugins
In reply to: [DHL WooCommerce Shipping Method] DHL Method Not Showing UpHi @savantpcs,
You can enable DHL for all countries and hide DHL shipping method only for USA by using a code snippet. Add the code to functions.php
Code:
add_filter(‘woocommerce_package_rates’, ‘wf_remove_shipping_options_for_particular_country’, 10, 2);
function wf_remove_shipping_options_for_particular_country($available_shipping_methods, $package){
global $woocommerce;
//Config this array with country code and corresponding shipping methods to hide.
$country_list = array(
‘US’ => array(‘wf_dhl_shipping’),
);
$customer_country = $woocommerce->customer->get_shipping_country();
if ( in_array( $customer_country , array_keys($country_list) ) ) {
if( !empty( $country_list[$customer_country] ) ){
foreach ($country_list[$customer_country] as $shipping_methods) {
foreach ($available_shipping_methods as $shipping_method => $value) {
if( strpos( $shipping_method, $shipping_methods ) !== false ) {
unset($available_shipping_methods[$shipping_method]);
}
}
}
}
}
return $available_shipping_methods;
}
Hi,
Seem you have set up the rule correctly, since you have set the rule to show 25.00 for items equal to or more than 7 items it will show 25 per unit for all the items.
You can share your exact requirement how you want the discount to show for the items so that I can suggest a rule format.
Hi,
Checked the debug data, the rates are returning by the API fine, please make sure you have enabled the services in the plugin settings, for international shipment world wide express with global product code P is returning, please make sure you have enabled that service.
hi @brandstard,
Please turn on the developer mode and while calculating shipping cost copy and attach the debug data here.
Hi Rohit,
The label print option is not available in the free version, but the choice of unit of measurement should be available in the free version as well, it should be in the packaging tab.
Hi @mimipracna2,
You need to set another rule if the number of units are more than 6 items set a different discount, in the basic version of the plugin we do not have the maximum discount restriction or adjustments.
If the number of items do not match the units specified in the rules the discount will not apply.
Hi Rohit,
Please make sure you have entered your DHL account number in the plugin settings General tab, and select the duty payment as sender or recipient.
If you still face issues please send me a screenshot of the plugin settings and the complete debug mode, make sure you alter the account number ad site ID and password for security reason.
Hi,
The FedEx rates depend upon various parameters like the shipping address, destination address, request type, box dimensions and weight, insurance, etc.
So, please recheck the package specifications and try again.
You can further compare the FedEx rates with the rates obtained from the FedEx rate calculator- https://www.fedex.com/ratefinder/home?cc=US&language=en&locId=express
You can refer this article that will help you troubleshoot the issue and compare the rates as well- https://www.xadapter.com/troubleshooting-woocommerce-fedex-shipping-plugin/
Hope this helps.
This troubleshooting steps should help you. Please go through it and let us know.
Hi David,
Regarding “estimated-delivery-woocommerce”, can you please let us know the source of the slug?
We are not using this in our plugin. Do you have any reference to any article using which we can check this?Hi @ambeldkar,
Sure you can change that option, but its advisable to use the packing option as kg and cm since DHL use these unit of measurement in the API
Hi @ambeldkar,
Please install the plugin in this link it will provide a field in the calculate shipping option to enter the city for the country to calculate shipping cost based on city.
This should fix the issue.
If you’re happy with the support and plugin do leave us a review here
Forum: Plugins
In reply to: [Fedex WooCommerce Shipping Method Plugin] Woo commerce shipping zonesHi Peeyoosh,
Splitting cart based on Shipping class can be achieved by modifying the Code Snippet given below.
https://www.xadapter.com/woocommerce-split-cart-items-order-ship-via-multiple-shipping-methods/However, we recommend that when both type products are available in the cart, you should go with the FedEx rates. In the premium version of our product, we have an option to skip the particular shipping class products while calculating the total shipping cost.
Now, considering the fact that you are using our Free version, it is better to keep the shipping calculation as simple as possible.
Hope this helps.
Forum: Plugins
In reply to: [Fedex WooCommerce Shipping Method Plugin] Woo commerce shipping zonesHi Peeyooshk,
I can help you quickly. However, can you please provide me your complete business case?
For Free shipping products, you only want the free shipping option and want to hide the rest. For non-free shipping classes, you want the FedEx rates.What is your requirement when both free and non-free shipping classes come into the cart? If you want to split the cart and show rates for both classes separately, then we would provide you a separate solution.
Hence, you see it is important that we understand your requirement in totality.
Forum: Plugins
In reply to: [DHL WooCommerce Shipping Method] DHL work without postal code / zipcodeHi @ambeldkar,
If the country has postal codes you need to use the postal codes for the plugin to work,
If the country does not have a postal code then it can work with the city of the country.So based on the country DHL works with or without the postal codes.