• Resolved duckrogers007

    (@duckrogers007)


    Hi,

    im interested to show filter in 3 or 4 columns ABOVE products. On mobile is fine.

    But i would like to be on top of product FEED with example:
    [fe_widget id="26" show_selected="yes" show_count="yes" horizontal="yes" columns="3"]

    BUT to be in start closed as it is on mobile.

    So toogle enabled even on desktop.

    Can it be done?

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

    (@fesupportteam)

    Hi @duckrogers007

    You can use this code in the functions.php file of your theme in order to change the breakpoint

    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 duckrogers007

    (@duckrogers007)

    TNX for quick and accurate reply. It works:)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can horizontal shorcode start as closed?’ is closed to new replies.