XootiX
Forum Replies Created
-
Forum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] Cant update “texts”Thank you for the screenshot. I would like to further investigate.
Could you please send me a message here ?
Thanks
Forum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] Cant update “texts”Hello @rogacz1988
Could you please share the full page screenshot of “the broken part”.
ThanksForum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] Hide Cart When EmptyPlease use this snippet for now. I will be adding this option officially in the next update.
add_action('wp_footer', function () { ?>
<script type="text/javascript">
jQuery(document).ready(function ($) {
$(document.body).on('wc_fragments_refreshed wc_fragments_loaded', function () {
var $sc = $('.xoo-wsc-sc-cont, .xoo-wsc-menu-item');
if ($('.xoo-wsc-product').length) {
$sc.show();
} else {
$sc.hide();
}
});
});
</script>
<?php });
// Hide cart count in header if cart is empty
add_action('wp_head', function () {
if (WC()->cart->get_cart_contents_count() <= 0) { ?>
<style type="text/css">
.xoo-wsc-sc-cont, .xoo-wsc-menu-item {
display: none;
}
</style>
<?php }
});Please use !important in your CSS
/* Hide subtotal */ span.xoo-wsc-sc-subt { display: none!important; }Sorry, I am unable to replicate the “moving” header issue on my end. I can further investigate if you share your website link here or on our website
Please replace
add_action('wp_footer', function () { ?>
<script type="text/javascript">
jQuery(document).ready(function ($) {
$(document.body).on('wc_fragments_refreshed wc_fragments_loaded', function () {
var $sc = $('.xoo-wsc-sc-count, .xoo-wsc-sc-subt');
if ($('.xoo-wsc-product').length) {
$sc.show();
} else {
$sc.hide();
}
});
});
</script>
<?php });
// Hide cart count in header if cart is empty
add_action('wp_head', function () {
if (WC()->cart->get_cart_contents_count() <= 0) { ?>
<style type="text/css">
span.xoo-wsc-sc-count, span.xoo-wsc-sc-subt {
display: none;
}
</style>
<?php }
});Hello @davidhc
I am glad you like the plugin.
Currently it is not possible to hide the elements conditionally from the settings.
You can use this snippetadd_action('wp_footer', function () { ?>
<script type="text/javascript">
jQuery(document).ready(function ($) {
$(document.body).on('wc_fragments_refreshed wc_fragments_loaded', function () {
var $sc = $('.xoo-wsc-sc-count, .xoo-wsc-sc-subt');
if ($('.xoo-wsc-product').length) {
$sc.show();
} else {
$sc.hide();
}
});
});
</script>
<?php });
// Hide cart count in header if cart is empty
add_action('wp_head', function () {
if (WC()->cart->get_cart_contents_count() <= 0) { ?>
<style type="text/css">
.xoo-wsc-sc-count, .xoo-wsc-sc-subt {
display: none;
}
</style>
<?php }
});Forum: Plugins
In reply to: [OTP Login & Register Woocommerce] Login with email form hidden in 2.6.9Hello @superdav42
Thanks for reaching out.
Yes, the CSS part you’ve shared is true, however the plugin also adds !important to style=”display:block”
which should force the form to appear.
Could you please share your website link here or on our site , so that I can further investigate.
ThanksHello,
Sorry, but are you sure it happens only when the plugin is active?
There is no such code in the plugin which shows banners & ads. We are strictly against showing any banners, even plugin itself doesn’t promote its premium version by showing banners.
No other users have reported this so far, so I assume its specific to your site and maybe something else is causing it.
I can further investigate, please share the details on our siteForum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] translated to spanish?Happens 🙂
For several languages, you will have to use a multilingual plugin.
The plugin settings options can also be translated into multiple languages using a multilingual plugin.
Here are the instructions for WPML
https://docs.xootix.com/side-cart-for-woocommerce/#wpmlForum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] translated to spanish?This string can be changed from the settings itself. Please go to side cart settings -> general -> Texts
Forum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] translated to spanish?Hello,
The translations aren’t available for es-ar, you can check here.
https://translate.wordpress.org/projects/wp-plugins/side-cart-woocommerce/
You may install any translation plugin such as “Loco Translate” and directly translate the plugin from your dashboard easily.Hello,
Its possible to add SKU and custom data, plugin has hooks. Please use this snippetadd_action( 'xoo_wsc_product_summary_col_start', function( $product ){
echo '<span>SKU: '.$product->get_sku().'</span>';
} );Would appreciate if you update the rating.
Thanks.Hello Sagar,
I see, you opened a support ticket yesterday. The website link you mentioned is showing suspicious, hence the email was marked as spam and went into “Junk” folder.
We do check your spams folder but not that frequently.
Anyway, I’ve answered to your query and I hope you will update your review.
Thanks!Hello,
You’ve left us a message like an hour ago. I request you to kindly wait at least 24 hours before you write a “No support” review.