Hello @babiskalogirou
Thank you for your interest in Filter Everyrthing.
From the latest plugin versions you can achieve this by adding next code for example in the functions.php of your active theme.
add_filter( 'wpc_mobile_width', 'my_custom_wpc_mobile_width' );
function my_custom_wpc_mobile_width( $width )
{
$width = 1024; // Desired breakpoint
return $width;
}
Thank you very much! It worked fine! Your plugin is excellent.
Hello @babiskalogirou
I’m glad that it works for you 🙂
I would be thankful for a review about the plugin here on ww.wp.xz.cn – https://ww.wp.xz.cn/support/plugin/filter-everything/reviews/
Thank you in advance!