• Hi on our site we only sell to users who are members (so they will be logged in) and am wondering if there’s a way we can remove the side cart display for non logged in users.

    Plugin is terrific and thanks for your work on it either way

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author xootix

    (@xootix)

    Hello @stevebrett

    Glad you like the plugin, would appreciate if you leave a review.
    Please add this CSS to display only for logged in users.

    add_action( 'wp_head', function(){
    	if( is_user_logged_in() ) return;
    	?>
    	<style type="text/css">
    		.xoo-wsc-modal{
    			display: none!important;
    		}
    	</style>
    	<?php
    } );
    Plugin Author xootix

    (@xootix)

    The above code goes in your functions.php not CSS ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide side cart from non logged in users’ is closed to new replies.