• Resolved graphicdop

    (@graphicdop)


    Hello! Thank you very much, wonderful plugin, I already left a 5-star review for you!

    How to collapse Filters on iPad Pro so it looks like on mobile?

    Thank you,

    Regards,

    Olga

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

Viewing 1 replies (of 1 total)
  • Plugin Support fesupportteam

    (@fesupportteam)

    Hi @graphicdop

    You can use this code in order to change the breakpoint for the needed one

    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

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.