Gaylord Focker
Forum Replies Created
-
Forum: Plugins
In reply to: [WebData Distance Based Fee for WooCommerce] Location picker pluginHi,
It has not been tested, so I cannot say this for sure if it works. But I guess you can to try this one out by yourself.
Kim
Forum: Plugins
In reply to: [WebData Distance Based Fee for WooCommerce] Billing error but shouldn’tHi,
That error message is caused by Google API, not the plugin itself. So you need to work it out on the Google’s end. Also make sure to clean caches if you have any.
Kim
Hi,
Yes, indeed you need to use unrestricted API keys, I’m glad you got it solved. Please make sure no other plugin is causing any conflict for the total costs behavior on checkout.
Kim
Hi,
You need some custom code to accomplish that. Please see docs: https://web-data.online/docs/woocommerce-distance-based-fee/#dbf_developers
Kim
Hi,
You can create multiple shipping methods in same zone to achieve that. Use “Minimum distance” and “Maximum distance” fields and also “Hide if limits are exceeded” option.
Kim
Forum: Plugins
In reply to: [WebData Custom Shipping Methods for WooCommerce] Fixed handling feeHi,
Yes, use “Handling costs” field in shipping method settings page.
Kim
Forum: Plugins
In reply to: [WebData Distance Based Fee for WooCommerce] delivery based on radiusHi,
You can add fee based on minimum and maximum distance in plugin’s settings.
If you want to hide your shipping method completely based on the distance, you need some customization: https://web-data.online/docs/woocommerce-distance-based-fee/
You may want to consider hiring a developer to do the customization job.
Kim
Forum: Plugins
In reply to: [WebData Distance Based Fee for WooCommerce] error on woocommerce 4.8Hi,
Check your error_log file please.
More info about debugging in WordPress can be found here: https://wordpress.org/support/article/debugging-in-wordpress/
Kim
Hi,
It is WooCommerce’s default behavior to show the fee separately. You are going to need some customization to achieve your desired behavior, like custom template for example: https://docs.woocommerce.com/document/template-structure/
Kim
Forum: Plugins
In reply to: [WebData Distance Based Fee for WooCommerce] Error log… no feeHi,
You don’t have correct APIs selected. Please see the docs to find the correct APIs: https://web-data.online/docs/woocommerce-distance-based-fee/
Kim
Hi,
Yes, that should be possible. Please check “developers” section on docs:
https://web-data.online/docs/woocommerce-distance-based-fee/#dbf_developersKim
Forum: Plugins
In reply to: [WebData Distance Based Fee for WooCommerce] Round a FeeHi,
Try to add this to your theme’s functions.php file:
function my_dbf_calculated_fee_callback( $calculatedFee, $kiloMeters, $divider, $price ) { return round($calculatedFee); } add_filter( ‘dbf_calculated_fee’, ‘my_dbf_calculated_fee_callback’, 10, 4 );Kim
Forum: Plugins
In reply to: [WebData Custom Shipping Methods for WooCommerce] Not working in basket?Hi,
If you mean the distance calculation, plugin will need customer’s address details to calculate the fee.
If there are other issues, please let me know.
Kim
Check my reply on your previous request.
Kim
You can hide the shipping method from the client if the address is not found at the plugin settings.
If you mean the Google API, the API will charge based on query, no matter whether the address is found or not. The plugin however requires certain fields to be filled before it makes the query, to avoid unnecessary costs.
Kim