xootix
Forum Replies Created
-
Forum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] stop auto-dismissing Error messageHello,
Please go to side cart settings and click on “Show/Hide pro options” from the buttons below. You will see the “Show notification for seconds” option, set it to higher value.
Now the notification will only be disabled once you open the cart.Hello,
You have custom “Ajax add to cart” (add to cart without refresh ) functionality on your website, coming from the below plugin.
https://arteva.com.br/wp-content/plugins/woolementor/modules/single-product-ajax/js/front.js?ver=4.7.8
The ajax add to cart request made by the above plugin fails to return the cart data and the request is getting redirected to page finalizar-compra.
Either there is an “add to cart” redirect feature enabled somewhere on your website or the above plugin’s request is itself redirecting you to the page finalizar-compra
What you can do is try deactivating the above plugin temporarily or see if it has an option to disable “Ajax add to cart” functionality. If the side cart opens well, then it means the issue is related to your “woolementor” ajax functionality and you can keep it disabled. Side cart itself has its own ajax functionality, so it will do the job.
But if the side cart still doesn’t open, that means the issue is with “add to cart redirect feature”. Somewhere there is a code/plugin in your site which is redirecting you to page finalizar-compra after adding to cart, look for it and disable the redirect.Hello,
“Show on mobile” option also takes tablet in consideration. It works for both mobile and tablet.
Here is the CSS, you can use to hide the basket for custom screen sizes.
800 is the screen size.@media only screen and (max-width: 800px) {
.xoo-wsc-basket[style*='block'], .xoo-wsc-basket {
display: none!important;
}
}Please leave a message here for support related to premium version.
Forum: Plugins
In reply to: [Login/Signup Popup ( Inline Form + Woocommerce )] text bars do not appearPlease go to “Login/Signup popup ” => Fields page and hit save or reset.
Hello,
The error isn’t from the plugin. Looks like a conflict between your theme & woocommerce which is preventing the side cart to update.
Please temporarily deactivate all other plugins and switch to some basic theme to further confirm.Forum: Plugins
In reply to: [Login/Signup Popup ( Inline Form + Woocommerce )] 2FA IntergrationHello,
Currently it does not support Wordfence, however the compatibility is on my update list and will soon be available.Forum: Plugins
In reply to: [Login/Signup Popup ( Inline Form + Woocommerce )] Easy Digitial DownloadsPlugin works without woocommerce.
There shouldn’t be any issues. Please let me know if you see any.Forum: Plugins
In reply to: [Login/Signup Popup ( Inline Form + Woocommerce )] Setup for block themesHello Roberto,
Yes, menu links don’t work with the block theme. How about using the shortcode? The shortcode now gives you the ability to include the username.[xoo_el_action type="login change_to="logout" change_to_text="Logout {username}?"]
Forum: Plugins
In reply to: [Login/Signup Popup ( Inline Form + Woocommerce )] NO POPUPYou will need to add a link/shortcode in your menu bar to open the popup.
Go to settings -> “info” and check “How to open popup”- This reply was modified 3 weeks, 4 days ago by xootix.
Thank you for your kind words and updating the rating.
I agree about the tag, the social login shouldn’t be there but I believe the “plugin title and description” is what matters the most, tags are useful for plugin search and doesn’t give you the exact description. Nevertheless, I will remove it. Thanks for mentioning.
“The next end social plugin claims to be a social login plugin and its premium features are part of social login functionality”.
As I said this plugin does not claim to be a social login plugin. It claims to be a form plugin.
For the form plugin, the social login would be considered as a cross sell and a different plugin, which is why I don’t think it should be marked as commercial.
No worries, its just a difference of opinion, I could be wrong.- This reply was modified 4 weeks, 1 day ago by xootix.
Yes, but why it should be marked as commercial?
Plugin provides you all the features as mentioned in the description. It does not trick you into installing the plugin and then asking you to pay further.
It is clearly claims to provide a form for “Login and registration” and it does and I believe it comes with a ton of shortcodes and customization options.
The add-ons are more like separate plugins, “Social-login , email verification and SMS login”. Plugin does not claim you to provide these and only give you the links, if someone is looking to have these functionalities.
The add-ons are cross-sells, “Hey, you bought a laptop, would you like to have a cooling pad or an external keyboard”- This reply was modified 4 weeks, 1 day ago by xootix.
Forum: Plugins
In reply to: [Login/Signup Popup ( Inline Form + Woocommerce )] Registration MessageHello,
You can use this snippetadd_filter( 'xoo_el_registration_success_notice', function(){
return 'Custom text';
} );Hello,
You can use this snippet.add_filter( 'xoo_el_login_redirect', function( $redirect, $user ){
$roles = $user->roles;
if( in_array('subscriber', $roles ) ){
$redirect = 'https://google.com';
}
if( in_array('customer', $roles ) ){
$redirect = 'https://google.com';
}
if( in_array('admin', $roles ) ){
$redirect = 'https://google.com';
}
return $redirect;
},99, 2 );