Forum Replies Created
-
AuthorPosts
-
in reply to: Static Options Instead of Topup? #3516
Hi @paul,
Thanks for reaching out. This can be done using some custom code. Please let us know if you are interested in paid support.
in reply to: How to disable wallet topup #3485You can disable wallet top-up by adding below code in theme function.php file.
add_filter('woo_wallet_is_enable_top_up', '__return_false');
in reply to: Woocommerce subscription & Membership #3472Yes, wallet top-up product is a private product. If not then this will appear in the shop page. You have to use a filter from the membership plugin and exclude the top-up product. If you share your site information then maybe we can help you more on this.
in reply to: Woocommerce subscription & Membership #3466Hi,
Thanks for reaching out. You can exclude wallet top-up product from discount rules.
in reply to: how to add custom order status in Process cashback? #3447You can post here by checking on Set as private reply checkbox. Or you can send us an email at support@woowallet.in
in reply to: how to add custom order status in Process cashback? #3445There is a coding error. If you share your site access details then we can do it for you.
in reply to: how to add custom order status in Process cashback? #3442We have a filter for this. You can use
woo_wallet_process_cashback_status
to add custom order status like below code.add_filter(‘woo_wallet_process_cashback_status’, ‘woo_wallet_process_cashback_status_callback’);
function woo_wallet_process_cashback_status_callback($status){ $status['custom_status'] = 'Custom status'; return $status; }
In the function.php file.
in reply to: Case on Multi Currency for WooCommerce #3439Our plugin is not compatible with any multicurrency plugin. We are creating a multicurrency supported addon will be published soon as paid addon.
in reply to: How to remove the grey background #3424Please use below CSS code in theme style.css file to remove the grey background.
.woo-wallet-my-wallet-container .woo-wallet-sidebar{ background: white !important; }
in reply to: Plugin is preventing user to add products to cart #3423I think there is an error in code at your theme function.php file line no 250. Please check and let us know.
in reply to: How to remove the grey background #3397Hi,
Could you please share a screenshot of that page?
Please insert the code snippet at active theme function.php file. And also to disable partial payment please use this code in theme function.php file
add_filter('woo_wallet_disable_partial_payment', '__return_true');
You can just override the mini wallet template into the theme folder and change the link.
in reply to: new order status to process cashback #3369We have filter
woo_wallet_process_cashback_status
for this you can use this filter like below code.add_filter('woo_wallet_process_cashback_status', 'woo_wallet_process_cashback_status_callback'); function woo_wallet_process_cashback_status($status){ $status['custom_status'] = 'Custom Status'; return $status; }
-
AuthorPosts