Gaylord Focker
Forum Replies Created
-
Hi,
Very much possible, but it would require some coding. The plugin has hooks which can be used for custom code. See docs for more info: https://web-data.online/docs/woocommerce-distance-based-fee/#dbf_developers
Kim
Hi,
WooCommerce’s caching issue. Save shipping method’s settings once to flush the cache.
Kim
Happy to help 🙂
Kim
Hi,
Save shipping method settings once and clear your cache.
Kim
Forum: Reviews
In reply to: [WebData Custom Shipping Methods for WooCommerce] Absolutely BrilliantThanks, glad to help! 🙂
Kim
Forum: Reviews
In reply to: [WebData Custom Shipping Methods for WooCommerce] It stopped workingHi,
You could just send a support topic instead giving a review. Just flushing the cache would probably have solved your issue btw.
Kim
Hi,
Basically all you need to do is to set the fee and then add cities as a comma separated list and plugin should add the fee to the total shipping costs, if user has entered the city on the checkout.
Do you see any errors on error_log file? Do you use any other plugins that could affect to the shipping costs or cart behaviour or does the city name has some “exotic” characters?
Kim
Hi,
I guess you could try to create 3 different shipping methods to the same shipping zone with different settings.
Like first one with limiting it to 5km with free of charge. Next one limiting to 10km and third one limiting to 20km.
Kim
Forum: Plugins
In reply to: [WebData Distance Based Fee for WooCommerce] Rounding off FeeHi,
Try:
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
Hi,
Plugin uses WooCommerce’s own add_fee function to add the fee. Every time the checkout page ajax updates, the fee will update too. This normally happens when user updates their address, postcode, city, shipping method or payment method.
If you are using any 3rd party plugins on your checkout page, it may be the ajax is not updating normally as it should. You should try without any plugins that affects on your checkout process and try if that affects to the issue.
Kim
Seems to be ok. You can try to remove the minimum distance and minimum cart total to see if it makes any difference. Also remember to save “local pickup” shipping method’s settings once, to flush the WooCommerce’s cache.
Kim
Hi,
You can disable hiding options from the plugin settings. Also please read FAQ: https://ww.wp.xz.cn/plugins/woo-distance-based-fee/#faq and follow all steps to correctly setup the plugin.
Installation instructions can be found here: https://web-data.online/docs/woocommerce-distance-based-fee/
Kim
Use your theme’s functions.php file or create custom plugin.
Kim
Hi,
If you are using the latest version of the plugin, you can choose how the distance based fee is calculated. See “Disable fixed fee if minimum distance is reached” option.
For the rounding you need to use hook and customize the code: https://web-data.online/docs/woocommerce-custom-shipping-methods/#developers
Kim
Thank you for your review! I am pleased to hear you find the plugin useful – reviews like this will keep the development work on going.
Your request has also been noted.
Kim