FullStack-ing
Forum Replies Created
-
Forum: Plugins
In reply to: [Smart COD for WooCommerce] No COD payment option after installingHi
Is this resolved?Best Regards
Forum: Plugins
In reply to: [Smart COD for WooCommerce] Min Cod chargesPlease refer to the above post, regarding custom code / new features.
As for the blacklist, we will probably implement this on the next release.Best Regards
Forum: Plugins
In reply to: [Smart COD for WooCommerce] BUG/CONFLICTHi, is this resolved?
I will check this and get back to you.Best Regards
Forum: Plugins
In reply to: [Smart COD for WooCommerce] Bug with shipping methodsHi,
Please send me a print screen of your smart cod settings.Best Regards
Forum: Plugins
In reply to: [Smart COD for WooCommerce] BUG: COD visible but not chargedHi,
Thanks for the suggestion, we will include this in the next releaseBest Regards
Forum: Plugins
In reply to: [Smart COD for WooCommerce] supportThe team consists of human beings, providing you a free plugin, without any cost or asking anything on exchange, so please respect this.
Best Regards
Forum: Plugins
In reply to: [Smart COD for WooCommerce] email restrictionHi,
Thanks for the suggestion, we going to implement this feature in a future release of the plugin.
If you in a hurry and you need this feature asap, please check this post first.
https://wordpress.org/support/topic/readme-before-post/Best Regards
Hi,
The COD charge is unrelated with the shipping cost.
You can disable the extra fee by using the setting “Stop charging extra fee if cart amount is greater than”.
Add 70 and you are ready to go.Best Regards
Hi,
Do you still have this issue?
Can you provide me the url of your website?Best Regards
Forum: Plugins
In reply to: [Smart COD for WooCommerce] Min Cod chargesHi,
For the 2.5% cod fee scenario to be achieved, you can hire a developer.
He/she can use our filterwc_smart_cod_fee, to easily develop this feature.We can code this for you as well, but please first check this post.
https://wordpress.org/support/topic/readme-before-post/Best Regards
Hi guys,
The functionality is now published on 1.4.9.4
Please use the filter in your functions.php like thisadd_filter( 'wc_smart_cod_fee_title', 'change_cod_title' ); function change_cod_title( $title ) { return 'My custom fee title'; }Let me know if any issues,
Best Regards
Forum: Plugins
In reply to: [Smart COD for WooCommerce] Need to allow for particular cities and pin-codesHi,
Just click the underlined “Disable” on the “Disable on specific postal codes” setting.
It will become “Enable”, so only the customer within those zip codes will have the cod available.Best Regards
Forum: Plugins
In reply to: [Smart COD for WooCommerce] No COD payment option after installingPlease try to remove “Hungary” from the “enable on specific countries” section.
As I can see you don’t provide an option to change country so probably this is the issue.Let me know if it’s solved.
Best RegardsForum: Plugins
In reply to: [Smart COD for WooCommerce] Advance paymentHi,
This is a Cash On Delivery plugin.Best Regards
Forum: Plugins
In reply to: [Smart COD for WooCommerce] Payment method selection issueThat’s strange. Maybe the duplicate id’s error cause this.
Try to add this in your functions.php
add_action( 'wp_footer', 'enqueue_smartcod_js', 100 ); function enqueue_smartcod_js() { ob_start(); ?> <script type="text/javascript"> jQuery( document ).ready( function($) { $( 'body' ).on( 'change', 'input[name=payment_method], #shipping_state, #billing_state', function() { $( 'body' ).trigger( 'update_checkout' ); }); $( 'body' ).on( 'focusout', '#billing_postcode, #shipping_postcode, #shipping_city, #billing_city', function() { $( 'body' ).trigger( 'update_checkout' ); }); }) </script> <?php ob_end_flush(); }