Forum Replies Created
-
AuthorPosts
-
in reply to: Set credit for WooCommerce product review #10260
Hi,
Thanks for reaching out. As per your requirement, we have to write custom code. The customisation cost will be $75. Please let us know.
in reply to: Change the Url #10113You can change URL from WooCommerce > settings > advanced tab.
in reply to: Amount displayed with 8 decimal points #9762You have to round the amount as per your need.
in reply to: Withdrawal of `Tera Wallet funds in Cryptocurrency #9749This reply has been marked as private.in reply to: Withdrawal of `Tera Wallet funds in Cryptocurrency #9740Hi Derrick,
Thanks for reaching out. As per your requirement, we can solve this with our wallet withdrawal extension. We understand we don’t have any crypto payment method for the withdrawal but we can write custom code to add a crypto withdrawal method in our plugin. Our withdrawal plugin cost is $49/Year and the customisation cost will be $35 (one time).
In our custom plugin, we will add a settings field to fill up the crypto address and also will add an export functionality to export withdrawal requests as a CSV file.
This reply has been marked as private.in reply to: Move Wallet in Navigation to the start #9632You can place a mini wallet in the main menu using the WooCommerce endpoint.
in reply to: Move Wallet in Navigation to the start #9628You can do so using the WooCommerce filter
woocommerce_account_menu_items
in reply to: withdrawal with invalid client #9565The error is for the client id is not valid. Please check the Paypal payout option is enabled on your Paypal account.
If you enable Paypal and stripe the user will have an option to choose in which account they want to withdraw. Upon withdrawal confirmation amount will be transferred from your stripe account to the client stripe account if the user chooses to withdraw in stripe.
in reply to: Help manual approved withdrawal not work #9535This means API keys for PayPal payout is not correct.
in reply to: Help manual approved withdrawal not work #9532Please enable wp debug and the try to manually process the withdraw request if error occurred then please check WooCommerce error log with file name woo-wallet-withdrawal
in reply to: Hide transactions menu item #9228Please use this code on the theme functions.php file
add_filter('woo_wallet_is_enable_transaction_details', '__return_false');
This reply has been marked as private.Please let us know which multi currency plugin you are using?
You can use the attached code to specify wallet currency.
add_filter('woo_wallet_wc_price_args', 'woo_wallet_wc_price_args_callback'); if(!function_exists('woo_wallet_wc_price_args_callback')){ function woo_wallet_wc_price_args_callback($args){ $args['currency'] = 'USD'; return $args; } }
-
AuthorPosts