Title: XootiX's Replies | WordPress.org

---

# XootiX

  [  ](https://wordpress.org/support/users/helloxootix/)

 *   [Profile](https://wordpress.org/support/users/helloxootix/)
 *   [Topics Started](https://wordpress.org/support/users/helloxootix/topics/)
 *   [Replies Created](https://wordpress.org/support/users/helloxootix/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/helloxootix/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/helloxootix/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/helloxootix/engagements/)
 *   [Favorites](https://wordpress.org/support/users/helloxootix/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 67 total)

1 [2](https://wordpress.org/support/users/helloxootix/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/helloxootix/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/helloxootix/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/helloxootix/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/helloxootix/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Side Cart Woocommerce | Woocommerce Cart] Cant update “texts”](https://wordpress.org/support/topic/cant-update-texts/)
 *  Plugin Support [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [8 months, 1 week ago](https://wordpress.org/support/topic/cant-update-texts/#post-18631505)
 * Thank you for the screenshot. I would like to further investigate.
 * Could you please send me a message [here](http://xootix.com/contact) ?
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Side Cart Woocommerce | Woocommerce Cart] Cant update “texts”](https://wordpress.org/support/topic/cant-update-texts/)
 *  Plugin Support [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [8 months, 1 week ago](https://wordpress.org/support/topic/cant-update-texts/#post-18630944)
 * Hello [@rogacz1988](https://wordpress.org/support/users/rogacz1988/) 
   Could you
   please share the full page screenshot of “the broken part”.Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Side Cart Woocommerce | Woocommerce Cart] Hide Cart When Empty](https://wordpress.org/support/topic/hide-cart-when-empty-4/)
 *  Plugin Support [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [8 months, 3 weeks ago](https://wordpress.org/support/topic/hide-cart-when-empty-4/#post-18615166)
 * Please use this snippet for now. I will be adding this option officially in the
   next update.
 *     ```wp-block-code
       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 emptyadd_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 }});
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Side Cart Woocommerce | Woocommerce Cart] Hide “Count” when the Cart is Empty (Shortcode)](https://wordpress.org/support/topic/hide-count-when-the-cart-is-empty-shortcode/)
 *  Plugin Support [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [8 months, 3 weeks ago](https://wordpress.org/support/topic/hide-count-when-the-cart-is-empty-shortcode/#post-18613488)
 * Please use !important in your CSS
 *     ```wp-block-code
       /* 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](http://xootix.com/contact)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Side Cart Woocommerce | Woocommerce Cart] Hide “Count” when the Cart is Empty (Shortcode)](https://wordpress.org/support/topic/hide-count-when-the-cart-is-empty-shortcode/)
 *  Plugin Support [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [8 months, 3 weeks ago](https://wordpress.org/support/topic/hide-count-when-the-cart-is-empty-shortcode/#post-18613123)
 * Please replace
 *     ```wp-block-code
       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 emptyadd_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 }});
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Side Cart Woocommerce | Woocommerce Cart] Hide “Count” when the Cart is Empty (Shortcode)](https://wordpress.org/support/topic/hide-count-when-the-cart-is-empty-shortcode/)
 *  Plugin Support [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [8 months, 3 weeks ago](https://wordpress.org/support/topic/hide-count-when-the-cart-is-empty-shortcode/#post-18613093)
 * Hello [@davidhc](https://wordpress.org/support/users/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 snippet
 *     ```wp-block-code
       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 emptyadd_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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[OTP Login & Register Woocommerce] Login with email form hidden in 2.6.9](https://wordpress.org/support/topic/login-with-email-form-hidden-in-2-6-9/)
 *  [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [8 months, 4 weeks ago](https://wordpress.org/support/topic/login-with-email-form-hidden-in-2-6-9/#post-18608929)
 * Hello [@superdav42](https://wordpress.org/support/users/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 ](http://xootix.com/contact),
   so that I can further investigate.Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Side Cart Woocommerce | Woocommerce Cart] Google Ads / Banner Ads appearing with latest update](https://wordpress.org/support/topic/google-ads-banner-ads-appearing-with-latest-update/)
 *  Plugin Support [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [9 months ago](https://wordpress.org/support/topic/google-ads-banner-ads-appearing-with-latest-update/#post-18607777)
 * Hello,
   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 site](http://xootix.com/contact)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Side Cart Woocommerce | Woocommerce Cart] translated to spanish?](https://wordpress.org/support/topic/translated-to-spanish-2/)
 *  Plugin Support [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [9 months ago](https://wordpress.org/support/topic/translated-to-spanish-2/#post-18605566)
 * 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/#wpml](https://docs.xootix.com/side-cart-for-woocommerce/#wpml)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Side Cart Woocommerce | Woocommerce Cart] translated to spanish?](https://wordpress.org/support/topic/translated-to-spanish-2/)
 *  Plugin Support [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [9 months ago](https://wordpress.org/support/topic/translated-to-spanish-2/#post-18605537)
 * This string can be changed from the settings itself. Please go to side cart settings-
   > general -> Texts
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Side Cart Woocommerce | Woocommerce Cart] translated to spanish?](https://wordpress.org/support/topic/translated-to-spanish-2/)
 *  Plugin Support [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [9 months ago](https://wordpress.org/support/topic/translated-to-spanish-2/#post-18605408)
 * Hello,
   The translations aren’t available for es-ar, you can check here.[https://translate.wordpress.org/projects/wp-plugins/side-cart-woocommerce/](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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Side Cart Woocommerce | Woocommerce Cart] replace Product Meta to show Product SKU](https://wordpress.org/support/topic/replace-product-meta-to-show-product-sku/)
 *  Plugin Support [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [9 months ago](https://wordpress.org/support/topic/replace-product-meta-to-show-product-sku/#post-18601660)
 * Hello,
   Its possible to add SKU and custom data, plugin has hooks. Please use 
   this snippet
 *     ```wp-block-code
       add_action( 'xoo_wsc_product_summary_col_start', function( $product ){	echo '<span>SKU: '.$product->get_sku().'</span>';} );
       ```
   
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Login & Register Customizer – Popup | Slider | Inline | WooCommerce] No Support](https://wordpress.org/support/topic/no-support-634/)
 *  Plugin Support [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [9 months, 1 week ago](https://wordpress.org/support/topic/no-support-634/#post-18598323)
 * Would appreciate if you update the rating.
   Thanks.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Login & Register Customizer – Popup | Slider | Inline | WooCommerce] No Support](https://wordpress.org/support/topic/no-support-634/)
 *  Plugin Support [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [9 months, 1 week ago](https://wordpress.org/support/topic/no-support-634/#post-18596703)
 * 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!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Login & Register Customizer – Popup | Slider | Inline | WooCommerce] No Support](https://wordpress.org/support/topic/no-support-634/)
 *  Plugin Support [XootiX](https://wordpress.org/support/users/helloxootix/)
 * (@helloxootix)
 * [9 months, 1 week ago](https://wordpress.org/support/topic/no-support-634/#post-18596698)
 * 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.

Viewing 15 replies - 1 through 15 (of 67 total)

1 [2](https://wordpress.org/support/users/helloxootix/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/helloxootix/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/helloxootix/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/helloxootix/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/helloxootix/replies/page/2/?output_format=md)