MakeWebBetter
Forum Replies Created
-
Hello,
Thanks for using our plugin!
My refund request form is not responsive. How can I solve this?
->>As we have checked it on our end, it’s working fine on our end. Maybe there is some theme issue or third party plugin issue that’s why you’re getting the issue on your end.,Can you please try once by deactivating other plugins one by one along with your theme, also please try once by clearing your cache.
If you’re still getting issues then share the screenshot of the settings along with the error log for the issue, so that we can check and help you.
Hope this will resolve the concern.
Regards,
Hello,
Thanks for getting back to us!
I know that your plugin only lets customers pay by wallet when the wallet has less money than the order total. Is it possible to pay by wallet even when there is more money in the wallet than the order total?
->> No, now our wallet plugin itself will work as an integrated payment gateway. When the amount in the wallet is more than the order amount, then the client is able to pay through the wallet payment gateway from the checkout page.If not, will this feature be added in future? Would’ve been a great convenience if customer could choose how they want to pay even if they have more money in the wallet.
->>Yes we have this feature for free and the client has full feasibility to choose the appropriate payment gateway.Anyway, your plugin is a great one. Good wishes.
->>Thanks for your kind appreciation.Hope this will resolve the concern.
Regards,
Hey,
It’s not possible to capture the emails via our plugin using the Hustle pop-up plugin, because it is a completely different plugin and our integration is not compatible with it.
Regards,
On the refund request form there is the product filter visible. How can I make sure this is not visible anymore?
I use divi builder=>Thanks for using our plugin as we don’t provide any filter on the refund request form which would be visible on refund form so we suggest you please share any screenshot or video of the point which you have shared so that we can understand and provide you solution accordingly.
We are always here to help you .
Regards
MakewebbetterHey.
The default functionality of our plugin is to capture the email on the checkout page. Currently, we don’t have such a feature in our plugin.
Regards,
- This reply was modified 5 years ago by MakeWebBetter.
Hi,
We at MakeWebBetter, always tend to assist our customers in the best possible ways we can.
And it is a great pleasure for us to know that you are happy with the assistance provided by us.
Thanks for your valuable feedback and a 5-star rating
Regards,
Hello,
Apologies for the previous response. I would like to tell you that as our integration is a one-way sync, so the deal stages which you will add in HubSpot will not reflect back in the back-end settings of our plugin.
Please let us know if you have any further queries/doubts
Regards,
Hi,
Thanks for your appreciation!
We are always here to give the best possible solution to our clients, also We are glad to hear that all of your issues are fixed and the plugin is working perfectly.
We are waiting for your kind feedback in the review section.
Regards,
Hello,
Our plugin does capture the abandoned cart for the guest users if the users are not logged in, you can navigate to the section of the abandoned cart of our plugin’s dashboard and mark the checkbox as a tick for the guest users, if you need anything specific thing, please let us know!
Thanks,
Hello,
We can sync the custom field to Hubspot but at first, we need to check for the further possibility of the sync, I request you to connect with us over [email protected] so that we can discuss it.
Regards,
Hi,
Thanks for getting in touch with us!
We have checked the issue from our end and make some changes in the plugin files to make the issue fixed. Please check these changes and proceed accordingly.
1. In public/src/js/wallet-system-for-woocommerce-public.js
a. replace line 102 "if ( response.message !== 'Please enter amount less than or equal to wallet balance' ) {" with "if ( response.status == true ) {" b. remove code from line 118 to 222 $('.mwb-wallet-userselect2').select2({ ajax: { url: wsfw_public_param.ajaxurl, dataType: 'json', delay: 200, data: function(params){ return{ email: params.term, action: 'mwb_search_for_user' }; }, processResults: function(data){ var users = []; if(data) { $.each(data, function(index,text){ text[2] += '(' + text[1] + ')'; users.push({id:text[0], text:text[2]}); }); } return{ results: users }; }, cache:true }, minimumInputLength: 4 }); $(document).on( 'click','#wallet_payment_method', function() { var method = $(this).val(); console.log(method); if ( method == 'Bank Transfer' ) { $('.show-on-bank-transfer').show(); $('.show-on-paypal').hide(); $('.error').hide(); } else if ( method == 'PayPal' ) { $('.show-on-paypal').show(); $('.show-on-bank-transfer').hide(); $('.error').hide(); } else { $('.show-on-bank-transfer').hide(); $('.show-on-paypal').hide(); $('.error').hide(); $('#mwb_withdrawal_request').prop('disabled', true); } }); $('#mwb_wallet_paypal_email').blur(function() { var email = $(this).val(); if ( email == '' ) { $('.error').show(); $('.error').html('Please enter an email id'); $('#mwb_withdrawal_request').prop('disabled', true); } else { $('.error').hide(); $('#mwb_withdrawal_request').prop('disabled', false); } }); $('#mwb_wallet_bank_account_name').blur(function() { var accountname = $(this).val(); if ( accountname == '' ) { $('.error').show(); $('.error').html('Please enter your account name'); $('#mwb_withdrawal_request').prop('disabled', true); } else { $('.error').hide(); $('#mwb_withdrawal_request').prop('disabled', false); } }); $('#mwb_wallet_bank_account_no').blur(function() { var accountno = $(this).val(); if ( accountno == '' ) { $('.error').show(); $('.error').html('Please enter your account number'); $('#mwb_withdrawal_request').prop('disabled', true); } else { $('.error').hide(); $('#mwb_withdrawal_request').prop('disabled', false); } }); $('#mwb_wallet_bank_sort_code').blur(function() { var sortcode = $(this).val(); if ( sortcode == '' ) { $('.error').show(); $('.error').html('Please enter sort code'); $('#mwb_withdrawal_request').prop('disabled', true); } else { $('.error').hide(); $('#mwb_withdrawal_request').prop('disabled', false); } });2. In file public/class-wallet-system-for-woocommerce-public.php
a. replace line 91 "wp_enqueue_script( 'mwb-public-min', WALLET_SYSTEM_FOR_WOOCOMMERCE_DIR_URL . 'public/js/mwb-public.min.js', array(), $this->version, 'all' );" with global $wp_query; $is_endpoint = isset( $wp_query->query_vars[ 'mwb-wallet' ] ) ? $wp_query->query_vars[ 'mwb-wallet' ] : ''; if ( ( 'wallet-transactions' === $is_endpoint || 'wallet-withdrawal' === $is_endpoint ) && is_account_page() ) { wp_enqueue_script( 'mwb-public-min', WALLET_SYSTEM_FOR_WOOCOMMERCE_DIR_URL . 'public/js/mwb-public.min.js', array(), $this->version, 'all' ); }3. In file includes/class-wallet-system-for-woocommerce.php
a. remove line 284 and 285 $this->loader->add_action( 'wp_enqueue_scripts', $wsfw_plugin_public, 'wsfw_public_enqueue_styles' ); $this->loader->add_action( 'wp_enqueue_scripts', $wsfw_plugin_public, 'wsfw_public_enqueue_scripts' ); b. add code after line 288 "if ( isset( $enable ) && 'on' === $enable ) {" $this->loader->add_action( 'wp_enqueue_scripts', $wsfw_plugin_public, 'wsfw_public_enqueue_styles' ); $this->loader->add_action( 'wp_enqueue_scripts', $wsfw_plugin_public, 'wsfw_public_enqueue_scripts' );4. In file includes/class-wallet-system-ajaxhandler.php
a. add code after line 55 "$wallet_amount -= $amount;" $message['status'] = true; b. add code after line 60 "} else {" $message['status'] = false;Hope this will resolve your concern. Also we will update this in the next update to fix the error.
Thanks and regards
Makewebbetter- This reply was modified 5 years ago by MakeWebBetter.
Forum: Reviews
In reply to: [One Click Upsell Funnel for Woocommerce] Great plugin and great supportHello,
Thanks for your valuable feedback and a 5-star rating.
We are always here to support our customers in the best possible way we can.
Best Regards,
Forum: Plugins
In reply to: [Return Refund and Exchange For WooCommerce] Error plugin activationHi,
Thanks for getting in touch with us!
We have checked the plugin on our end and currently, it’s installing & working perfectly.
Maybe there is some third-party plugin or theme issue that causes the particular error.Can you please try once by deactivating other theme and plugin and then check, hope it works out perfectly on your end? Still, you’re getting any issues then you can contact us.
Thanks.
Hello,
Thank you for your query and also for mentioning the issue you faced. So we have checked this and already started to work on this issue.
We will update the plugin and resolve the issue, so please allow us some time, we will be thankful for this.
Regards,
Hello,
It is immense pleasure of us to know that you are satisfied with our plugin update and the latest feature provided by our team.
Thanks for your valuable feedback and a 5-star rating.
->>can you add an export function of wallet transactions?
You can use this feature in our pro version which is going to release soon within a week.Regards,