Restricted
You need to be an active WooCommerce Smart COD PRO member, in order to access support!
Please check our plans here!
Forum Replies Created
-
AuthorPosts
-
15 February 2021 at 7:51 pm in reply to: [BUG] Conflict with YITH PAYMENT METHOD RESTRICTIONS FOR WOOCOMMERCE #1395
woosmartcod
KeymasterSorry for that, it was an autocomplete error.
The correct email is info@woosmartcod.com
We just found your original mail it was in spam folder.
Please send us the credentials there.
Thank you
15 February 2021 at 7:26 pm in reply to: Bug: If the payment fails, customer can bypass the Risk Free COD #1394woosmartcod
KeymasterHello,
We are still working on this, we will let you know as soon as it is ready!15 February 2021 at 6:34 pm in reply to: [BUG] Conflict with YITH PAYMENT METHOD RESTRICTIONS FOR WOOCOMMERCE #1392woosmartcod
KeymasterHi!
Thanks for your feedback.
Could you please create a temporary admin account and send us the credentials at info@woosmartcod.com in order to check ?
woosmartcod
KeymasterI’m adding the snippet again here, since the last one was expired.
You just need to copy/paste this to your functions.phpadd_action( 'woocommerce_new_order', 'admin_hook_smart_cod', 10, 1 ); function admin_hook_smart_cod( $order_id ) { if( ! is_admin() || ! $order_id ) { return; } $order = wc_get_order( $order_id ); if( ! $order ) { return; } $payment_method = $order->get_payment_method(); if( $payment_method !== 'cod' ) { return; } $smartcod_fees = get_option( 'woocommerce_smartcod_extrafees_settings' ); if( ! $smartcod_fees || ! is_array( $smartcod_fees ) ) { return; } if( ! isset( $smartcod_fees[ 'enabled' ] ) || $smartcod_fees[ 'enabled' ] !== 'yes' ) { return; } if( ! isset( $smartcod_fees[ 'rules' ] ) || empty( $smartcod_fees[ 'rules' ] ) ) { return; } $fee = $smartcod_fees[ 'rules' ][ 0 ][ 'fee' ]; $item = new WC_Order_Item_Fee(); $item->set_name( __( 'Cash on delivery', 'woocommerce' ) ); $item->set_total( $fee ); $item->set_amount( $fee ); $item->set_tax_status( 'none' ); $item->set_tax_class( '' ); $item->save(); $order->add_item( $item ); $order->calculate_totals(); $order->save(); }
9 February 2021 at 9:24 pm in reply to: Bug: If the payment fails, customer can bypass the Risk Free COD #1387woosmartcod
KeymasterAbout 5-7 working days at tops
9 February 2021 at 9:20 pm in reply to: Bug: If the payment fails, customer can bypass the Risk Free COD #1385woosmartcod
KeymasterThanks.
We are going to release a new version preventing the customer to pay a failed risk free order pretty soon
9 February 2021 at 9:16 pm in reply to: Bug: If the payment fails, customer can bypass the Risk Free COD #1383woosmartcod
KeymasterHello!
Normally it shouldn’t land in order-pay page and we have hide the “pay” button from his orders when the order is risk free cod.Which gateway do you use to pay the advance ?
woosmartcod
KeymasterHello!
We are going to check this and revert!
Thank youwoosmartcod
KeymasterOf course! Don’t hesitate to contact us for any help needed!
woosmartcod
KeymasterPlease add this code to your functions.php:
Click: https://snippi.com/s/ss9mk14
and paste this code to your functions.phpThen please create a new cash on delivery order.
Let us know if the fee is applied as expected!-
This reply was modified 4 years, 3 months ago by
woosmartcod.
woosmartcod
KeymasterHi,
Thanks for reaching out!
We are currently working on manual order charge, we are going to have this up and running and soon.
Could you please tell us what configuration do you use for extra fees?
14 January 2021 at 9:16 pm in reply to: When marking an order complete – admin recieves abnormal “New Order” #1344woosmartcod
KeymasterHello!
We are working on an update to fix all those email issues,
and also the issue you mentioned with the wrong “paid via”!So hang on and soon enough you will have news on this 🙂
woosmartcod
KeymasterHi!
Thanks for the suggestion!
Sure we will implement this in the next update!woosmartcod
KeymasterHello!
Are you sure you don’t use any other plugin to add payment fees?
If not, could you please share with us your extra fee settings?6 January 2021 at 8:07 pm in reply to: Possible to disable admins advance order email similarly to how customers does? #1321woosmartcod
KeymasterOk, the title was pretty self explanatory, we originally missed it!
Sure we will add an option to disable admin email as well! -
This reply was modified 4 years, 3 months ago by
-
AuthorPosts