• Just recently downloaded the “Woo Side Cart” and my goal was to have only Logged In users to view the Basket. Instead of Excluding certain pages I went to the developers website where I found a Live Chat feature. At times, there’s normally never any support Online. Not this case, Xootix was there to help in a matter of seconds. Xootix provided me the custom code to add to my theme/Functions.php and guided me were to leave the custom code. In less than 5 minutes with the help of Live Chat. I was able to accomplish my goal.

    I am going to share the custom code I was given to allow Only Logged In Users to view the Basket.

    //Hide basket for guest users
    function xoo_cu_wsc_only_logged_in(){
     if(is_user_logged_in()) return;
     echo '<style>.xoo-wsc-basket{display: none!important;}</style>';
    }
    add_action('wp_head','xoo_cu_wsc_only_logged_in');
  • The topic ‘Amazing! Xooitx’ is closed to new replies.