• Resolved leobo

    (@leobo)


    Hello,

    I would like to finely tune the “Collapse Filters Widget on Mobile devices” behaviour to make it work on tablets too. How could I achieve it?

    Thanks,

    Léo

    The page I need help with: [log in to see the link]

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

    (@stepasyuk)

    Hello @leobo

    To change mobile breakpoint value, please add in the functions.php file of your active theme next 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;
    }
    Thread Starter leobo

    (@leobo)

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Collapse Filters Widget on other devices’ is closed to new replies.