Forum Replies Created
-
AuthorPosts
-
in reply to: Withdrawal Methods Request #8054
Please use below-attached code in the theme function.php file
add_filter('woo_wallet_withdrawal_bacs_account', 'woo_wallet_withdrawal_bacs_account_callback'); if(!function_exists('woo_wallet_withdrawal_bacs_account_callback')){ function woo_wallet_withdrawal_bacs_account_callback($bank_account_details){ $bank_account_details = array( array( 'label' => __('CBU', 'woo-wallet-withdrawal'), 'name' => 'bacs_cbu' ), array( 'label' => __('ALIAS', 'woo-wallet-withdrawal'), 'name' => 'bacs_alias' ), array( 'label' => __('CUIT/DNI'), 'name' => 'bacs_cuit_dni' ), array( 'label' => __('NOMBRE y APPELLIDO', 'woo-wallet-withdrawal'), 'name' => 'bacs_nombre_y_appellido' ), ); return $bank_account_details; } }
in reply to: mini-wallet #8053Please use mini wallet from Appearance > Menus > WooCommerce endpoints section.
in reply to: Input Box size #8052Hi,
Thanks for reaching out. You can change the length of the input box but for that, you have to override our plugin template file into the theme folder.
in reply to: Withdrawal Methods Request #8051Hi,
Thanks for reaching out. Yes, it can be done but we have to do some custom code.
in reply to: WooWallet Withdrawal – Stipe keys #8031Please flow this documentation https://docs.cs-cart.com/latest/user_guide/addons/stripe_connect/credentials.html
in reply to: Use custom ID field when importing #8015You can customize our import module using
woo_wallet_importer_user filter
. Please check the below code referance which will fetch the user by ID.add_filter('woo_wallet_importer_user', 'woo_wallet_importer_user_callback', 10, 2); if(!function_exists('woo_wallet_importer_user_callback')){ function woo_wallet_importer_user_callback($user, $data){ return get_user_by('id', $data); } }
in reply to: Withdrawal request data not removed after submit #8000Thanks for reporting this issue. We will fix this in the next plugin update.
You have to add the URL in the stripe app setting in the stripe dashboard.
It is depending on the Payment provider (Like Paypal or stripe) charge fee.
in reply to: Add custom payment methods #7983This reply has been marked as private.in reply to: Re: AffiliateWP not showing up on the dashboard #7960You have to install the AfileateWp(https://affiliatewp.com/) plugin before installing this.
in reply to: Better reporting for coupon use #7959Thanks for your valuable inputs. We will try to include this feature in our next update.
in reply to: Add custom payment methods #7958Okay let us know which field you want in the user frontend
-
AuthorPosts