• This is a good plugin, beautiful for desktop. But on mobile, with storefront theme for woocommerce, the plugin is in front of the bottom menu “account,search,cart”. It’s a shame.

Viewing 1 replies (of 1 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi @icedo,
    sorry for the late reply. You can add this to the functions.php file of your theme:

    add_filter( 'ylc_can_show_chat', 'my_show_chat_button', 11 );
    
    function my_show_chat_button( $show ) {
    
    	if ( wp_is_mobile() ) {
    
    		$show = false;
    	}
    
    	return $show;
    
    }

    I hope you will change your opinion on the plugin ??

    Regards,
    YITH

Viewing 1 replies (of 1 total)
  • The topic ‘Live chat hide bottom menu on storefront mobile’ is closed to new replies.