XootiX
Forum Replies Created
-
Hello,
Its possible with the “Custom registration fields” add-on. Please leave a message at http://xootix.com/contact once you have it. I will share the snippet to validate both the fields.Thank you for reporting. New update is now available.
Hello @yossitrabelsi
Coupons are part of Pro version, please leave a message here xootix.com/contactForum: Plugins
In reply to: [OTP Login & Register Woocommerce] OTP is not working in Free VersionHello @roshnii
The demo site is working now. There was a misconfiguration in firebase settings. Thanks for reporting.
You can test now.
Yes, you can force users to login / register before placing order.
You can also add OTP verification to your checkout form.
https://demo.xootix.com/mobile-login-for-woocommerce/checkout/I am glad it is solved.
You’re welcome. 🙂Forum: Plugins
In reply to: [OTP Login & Register Woocommerce] OTP is not working in Free VersionHello @roshnii
Firebase requires connecting billing account, it will only charge after surpassing the quota if you enable it. Please confirm further with firebase.
You can see the demo here.
Yes, you can customize the login and register forms and also open the popup on checkout page.
You get all this feature in the free version.
Download the Login/Register form plugin here to test.
The Paid version includes the compatibility with the above “Login/Register” plugin.Hello,
Please try adding this snippet to your functions.phpadd_action( 'wp_footer', function(){
?>
<script type="text/javascript">
jQuery(documnet).ready(function($){
$( document.body ).on( 'adding_to_cart', function( e, $button, formData ){
if( formData.has('action') && formData.get('action') === 'xoo_wsc_add_to_cart' ){
$button.data('product_id', formData.get('add-to-cart') );
}
});
});
</script>
<?php
} );Forum: Plugins
In reply to: [OTP Login & Register Woocommerce] OTP is not working in Free VersionHello,
As per google requirement, you will need to add your billing account even if you’re on the spark plan
Step 17
https://docs.xootix.com/mobile-login-for-woocommerce/google-firebase/Forum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] Autoptimize compatibilityHello,
I am glad you like the plugin.
I couldn’t replicate the issue on my end with “Optimize JavaScript Code” enabled.
Please add this xoo-wsc-main.js under option “Exclude scripts from Autoptimize:” and clear the cache.
See if it works.Hello,
Go to Login/Signup popup settings -> advanced and under “Open login popup class”, add thisstorefront-handheld-footer-bar .my-accountIf you install and setup the SMTP plugin, you will be able to send emails from your localhost setup as well 🙂
You’re welcome.Hello,
Plugin does not send emails.
If you’re not receiving emails, that means your site is lacking the email functionality.
Please use this plugin and do the email setup
https://wordpress.org/plugins/wp-mail-smtp/Happy to help! Would appreciate your feedback here
ThanksForum: Reviews
In reply to: [Side Cart Woocommerce | Woocommerce Cart] License Promise BrokenYou’re welcome. Happy to clear your doubts!
Hello,
Yes, you’re correct. Ideally it shouldn’t process the login twitter request when turned off. Please use this snippet for now, I will do the needful in next update.add_action( 'init', function(){
if( !function_exists( 'xoo_sl_handler' ) || !isset($_GET['logintwitter']) ) return;
wp_safe_redirect( esc_url( remove_query_arg( 'logintwitter' ) ) );
exit;
}, 5 );