Forum Replies Created
-
AuthorPosts
-
Thanks for your suggestion. We will try to implement a cryptocurrency withdrawal method and let you know.
in reply to: Wallet credit used for order not showing on Invoice #3057For that, we have to do some custom coding. Please let us know if you are interested in paid support.
in reply to: Unable to Top-Up wallet #3001This might be a plugin conflict. Please disable all other plugins except WooCommerce and TeraWallet and check. For reference please find https://premium.wpmudev.org/blog/wordpress-plugin-conflicts-how-to-check-for-them-and-what-to-do/.
Please use child theme for custom code.
Please check if there is any javascript error on your site or else you can just click payment setting tab to setup payment option.
in reply to: Order Status stays at "Processing" #2880Please use below code in theme function.php file.
add_action('woo_wallet_payment_processed', 'woo_wallet_payment_processed_callbak'); if(!function_exists('woo_wallet_payment_processed_callbak')){ function woo_wallet_payment_processed_callbak($order_id){ $order = wc_get_order($order_id); $order->set_status('completed'); } }
in reply to: Admin e-mail notification on withdrawal requests #2848Yes, The site admin will notify by email when a new withdrawal request submitted. You can check email settings from WooCommerce > settings > emails tab.
in reply to: wallet commission when reloading not working #2838Hi,
Thanks for reaching out. The payment gateway charge will not effect on the checkout page but the amount will be minus gateway charge. Eg. if a customer wants to top-up $100 and payment gateway charge is 5% then the customer will receive $95.
in reply to: Multiple small withdrawals #2818Sorry, withdrawal extension is only for withdrawing wallet balance to user bank account or PayPal or Stripe account.
in reply to: Setup payment settings banner link not working #2817Hi,
Thanks for reaching out. Yes, you are right the banner link is only yo point the payment settings tab. We are trying to make it more user-friendly.
in reply to: Reduce credit #2766Please select transaction type as debit.
in reply to: Reduce credit #2764Yes, you can manage user credit from TeraWallet user balance details page.
in reply to: CSS Withdrawal #2759You can override the CSS from theme style CSS file using the class.
We will resolve this in our next update. Thanks for pointing this issue.
in reply to: Change/delete the icon wowallet #2757You can use CSS Class
woo-wallet-icon-wallet
and change the icon content. -
AuthorPosts