XootiX
Forum Replies Created
-
Forum: Plugins
In reply to: [Waitlist Woocommerce ( Back in stock notifier )] PHP 8.3 depricated warningHello,
Its related to premium version. Please contact hereHello,
I can see the fields now.
If this ever happens again, please go to “Fields” page settings and hit save. 🙂Hello Paul,
The version key should exist. Could you please leave a message here with your order details so that I can further investigate.Forum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] Free shipping bar disappearHello,
Free shipping bar is a premium feature. Please leave a message on our website.Hello,
Could be some other plugin throwing the PHP error.
Default wordpress form is not ajax based and other plugins do not load on wp-login.php
Please temporarily deactivate all other plugins and test or check your debug error log.
https://help.dreamhost.com/hc/en-us/articles/360029327771-Enabling-the-WordPress-Debug-logHello,
If the page where you’re redirected on clicking “Reset password link” has the inline form, the popup will not open.
It only opens when the form is not found on the page.Hello,
You can use this snippet.
The below snippet allows registration with the domains mentioned below. If you want to restrict domains, remove ! from! in_array( $domain, $allowed_domains )function xoo_allow_registration_with_specific_domains( $errors, $username, $password, $user_email ) {
// List of allowed email domains
$allowed_domains = array( 'hotmail.com', 'gmail.com', 'icloud.com' );
// Extract the domain part of the email
$email_parts = explode( '@', $user_email );
$domain = array_pop( $email_parts );
// If the domain is not in the allowed list, add an error
if ( ! in_array( $domain, $allowed_domains ) ) {
$errors->add(
'email_domain_error',
__( 'Registration is only allowed with emails from hotmail, gmail, or icloud.', 'woocommerce' )
);
}
return $errors;
}
add_filter( 'xoo_el_process_registration_errors', 'xoo_allow_registration_with_specific_domains', 10, 4 );Hello,
You can change the texts from side cart settings -> general tab -> TextsGreat! Thanks for mentioning the plugin and the setting.
Hello,
Are you using WooCommerce? Since you mentioned that it redirects you to the my account page.
Most likely some other plugin on your site is interfering with the WooCommerce reset password functionality.
Did you test resetting password using woocommerce lost password form?
If you’re not using woocommerce, then temporarily deactivate all other plugins and test again.
There has been no changes related to reset password functionality in the recent update.Hello Mayank,
Just checked your site, the popup is opening fine. You have also opened the support ticket via email so I am closing here. If you have any further questions, please response on the email.
ThanksHello,
Thank you for doing the compatibility tests on your end and reporting. I will look into this.
Please fetch the latest version of “Side cart” plugin from your xootix.com/my-account and install it.
You may need to go through the settings once again as new settings and options have been added in the recent versions, so if its a live website, be careful. (You will not lose your existing settings )Please contact on website regarding paid add-ons.
Hello,
Its nothing to worry about. It is a security guideline to be followed and isn’t a vulnerability or can affect your site in any way.
I will release a patch soon.Hello,
These fonts are the icons used by plugin.
You can use this snippet to removeadd_action( 'wp_enqueue_scripts' , function(){
wp_dequeue_style( 'xoo-wsc-fonts' );
}, 30);