FullStack-ing
Forum Replies Created
-
Forum: Plugins
In reply to: [Smart COD for WooCommerce] BLANK screen when choosing COD in the Cash tabHi Albert,
Please send me your php errors ( especially the part our plugin is involved ) to help you out on this.
You can find out the error by reproducing the white page and check the time on the error log.Also please send me a screenshot of our plugin settings.
Best Regards
Already done my friend, in the last update.
Find “Disable on specific shipping methods of zones” setting!- This reply was modified 8 years, 5 months ago by Jan Dembowski.
No problem at all!
You’ll help us a lot if you rate the plugin.- This reply was modified 8 years, 5 months ago by Jan Dembowski.
Did you update to the latest version?
Yes I know I already told you that this is an issue of the table rate shipping plugin.
If you completely disable our plugin you will see that COD is still unavailable when you use the WooCommerce Table Rate Shipping.My question is about our latest version.
I developed the part you asked, to give options to charge differently for all the shipping methods of a shipping zone even of the same type ( e.g field rate 1, field rate 2 )- This reply was modified 8 years, 5 months ago by FullStack-ing.
- This reply was modified 8 years, 5 months ago by FullStack-ing.
Forum: Plugins
In reply to: [Smart COD for WooCommerce] Feature RequestIt will help us a lot if you rate our effort.
- This reply was modified 8 years, 5 months ago by Jan Dembowski.
Forum: Plugins
In reply to: [Smart COD for WooCommerce] Feature RequestSurely it will be part of our next update.
For some projects the contribution is what matters to me.
There is a donation link here anyway, but the positive feedback means a lot as well 🙂- This reply was modified 8 years, 5 months ago by Jan Dembowski.
Forum: Plugins
In reply to: [Smart COD for WooCommerce] Feature RequestHi,
I’m waiting for your reply!- This reply was modified 8 years, 5 months ago by Jan Dembowski.
Hi,
I’m waiting for your reply!- This reply was modified 8 years, 5 months ago by Jan Dembowski.
Forum: Plugins
In reply to: [Smart COD for WooCommerce] Feature RequestHere you are. Add this to your functions.php and adjust the coupon codes.
The code is tested and working.add_filter( 'wc_smart_cod_available', 'cod_restrict_coupons' ); function cod_restrict_coupons( $is_cod_available ) { global $woocommerce; $applied_coupons = $woocommerce->cart->applied_coupons; // add the coupon codes you want // to restrict in this array $restricted_coupons = array( 'awesome coupon', 'coupon 2' ); if( array_intersect( $restricted_coupons, $applied_coupons ) ) { $is_cod_available = false; } return $is_cod_available; }Let me know if any issues.
- This reply was modified 8 years, 5 months ago by FullStack-ing.
- This reply was modified 8 years, 5 months ago by Jan Dembowski.
Forum: Plugins
In reply to: [Smart COD for WooCommerce] Feature RequestHi,
No. That was a fix update developed days ago, fixing an issue with shipping method calculation.Nevertheless, I will send you a snippet to add in your functions.php later today, supporting your scenario!
- This reply was modified 8 years, 5 months ago by Jan Dembowski.
We just released an official update ( 1.4.7 ).
It’s almost the same with the file I sent you, so ignore the file, please update and let me know if any issues. 🙂- This reply was modified 8 years, 5 months ago by Jan Dembowski.
Forum: Plugins
In reply to: [Smart COD for WooCommerce] Feature RequestHi,
Thanks for your kind words.
We surely consider to add this option in our next update.- This reply was modified 8 years, 5 months ago by Jan Dembowski.
Hi Luis,
Here is the customized version supporting your scenario, as we promised.
Please install it and let me know if everything works as expected and I will merge it and publish a new update of the plugin.
- This reply was modified 8 years, 5 months ago by Jan Dembowski.
Hi again,
I will send you a custom version in few days to test.
If everything works as expected I will merged it and release a proper update. 🙂- This reply was modified 8 years, 5 months ago by Jan Dembowski.
BUT not for each particular “shipping method title”, ie if I create two different Flat Rates within the same zone (eg for different prices and delivery times), you don’t have the two below discriminated to allow for different charges, but only the “Flat Rate” type, implying that the COD charge will apply for both the same way, despite the fact that I would want it to apply to only one.
You wrote this in your first post.
Is this something that will help you? To discriminate different methods of the same type?
Because we going to include this in the next update.What’s your target in general? To charge the extra fee for a shipping method of a shipping zone and not for some other(s)?
Our plugin supports two filters, so I can help you, by giving you a code snippet to have your job done until the next update, if you help me understand your exact fee / restriction scenario.
- This reply was modified 8 years, 6 months ago by FullStack-ing.
- This reply was modified 8 years, 5 months ago by Jan Dembowski.