FullStack-ing
Forum Replies Created
-
Forum: Plugins
In reply to: [Smart COD for WooCommerce] Allow COD only for specific countriesWhy don’t you disable cod on shipping zone ‘Rest of the World’ and disable the cod specifically on those 3 countries that belongs to the shipping zone but you don’t want to have the cod enabled?
3 countries * 3 shipping zones = 9 selections.
We will consider to add a ‘switch’ from ‘disable’ to ‘enable’ for every existing restriction field on the next update.
Forum: Plugins
In reply to: [Smart COD for WooCommerce] Allow COD only for specific countriesHi again Albert,
Why don’t you disable the COD for shipping zone: Rest of the world ( that’s a default WooCommerce shipping zone containing every country except the ones you defined in other shipping zones )
It’s a one click on our settings: Disable on specific shipping zones -> Select Rest of the world.
This way the cod will be available only for countries you defined in your shipping zones.
Forum: Plugins
In reply to: [Smart COD for WooCommerce] Conflict with Flexible Shipping pluginHi Albert,
So you probably changed your Decimal separator through WooCommerce / Settings to ‘,’ but when trying to save in WooCommerce Smart COD an amount in this format, our validation engine complains with the message ‘This field should be a number only.’
Is that correct?We will release an update supporting ‘,’ delimiter later today.
Great Albert!
If you liked the plugin, it will help us a lot if you rate it.
Don’t hesitate to contact us for any question.Best Regards,
FullStack TeamAlbert that’s strange we just tested with the exact same scenario like yours and Austria gets the ‘extra fee’ field value and not the one you defined for Germany.
Are you sure that Austria is not included in Germany’s shipping zone by mistake?
Are you sure that Austria’s specific extra fee field is empty?If you are working on a live server, send us the url so we can try to debug this.
- This reply was modified 8 years, 10 months ago by FullStack-ing.
- This reply was modified 8 years, 10 months ago by FullStack-ing.
Nice 🙂
If you liked the plugin, it will help us if you rate it.
Thanks a lot Albert and have a nice day.
Best Regards,
FullStack TeamHi Albert,
The extra fee should work anyway, since the WooCommerce casts the cart price in a number value, so the “,” will become “.” at the end.
Please confirm that it works correctly in the checkout page, otherwise we will update to allow the “,” delimiter as well.
Best Regards,
FullStack TeamHi Albert,
Thanks for your comment.
The update to support PHP versions < 5.4 is now released.Best Regards,
FullStack TeamHi Albert, thanks for contacting us,
The reason you see this message is because you are using an outdated PHP version in your server ( < 5.4 ).
We will release an updated version of the plugin with support for older PHP versions, later today.
If you have the know-how, you can fix this by yourself, temporarily until our update.
Please edit file wp-content/plugins/wc-smart-cod/public/class-wc-smart-cod-public.php
replace line 106
$package = $cart->get_shipping_packages()[0];
with$package = $cart->get_shipping_packages(); $package = $package[0];replace line 146
$package = $cart->get_shipping_packages()[0];
with$package = $cart->get_shipping_packages(); $package = $package[0];Don’t hesitate to contact us for any question.
Best Regards,
FullStack Team