• Resolved raffie

    (@raffie)


    Hello,
    By default on mobile devices Collapsed filter worked for screens below 768, how can I change it to 1024?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support fesupportteam

    (@fesupportteam)

    Hi @raffie

    You can use this code

    add_filter( 'wpc_mobile_width', 'my_custom_wpc_mobile_width' );
    function my_custom_wpc_mobile_width( $width )
    {
        $width = 1920; // new desired breakpoint in px
        return $width;
    }

    Best Regards – Victor

    Thread Starter raffie

    (@raffie)

    Thank You!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Collapse Filters Mobile devices custom screen sizes’ is closed to new replies.