• Sourabh Saini

    (@hackercommunity)


    First of I wanted to Thanks the author for their fast support even this is a free plugin, they reply my ticket within 1 hr with a proper solution . I had multiple error as I wanted to hide the cart button for the mobile users because i had already a different menu for mobile user . He reply all my queries back and forth without asking anything.

    Thank You so much.

    */ Here is the solution if you also wanted to hide the cart menu for mobile users */

    Step 1: Login to your wordpress website wp-admin or use ftp
    Step 2: Go to appearances-> Theme Editor -> Select your active theme -> Select->function.php file
    Step 3: Copy paste the below code at the end of your file

    add_filter( ‘xoo_wsc_is_sidecart_page’, function( $isPage, $hidePages ){

        if( wp_is_mobile() ){

                    $isPage = false;

        }

        xoo_wsc()->isSideCartPage = $isPage;

        return $isPage; }, 10, 2 );

  • The topic ‘Fast Support and Best Plugin for Ecommerce Websites’ is closed to new replies.