Hi. How can we help?

Change the container width for mobile layout

MultiStep checkout 2.0 activates mobile view when the resolution of the device in use is less than 992px. It is possible to modify this value through this php code in functions.php of your theme:

add_filter( 'yith_wcmv_max_mobile_width', 'yith_wcmv_max_mobile_width' );

if( ! function_exists( 'yith_wcmv_max_mobile_width' ) ){
function yith_wcmv_max_mobile_width( $width ){
$width = 500;
return $width;
}
}
Was this article helpful?
0 out of 0 found this helpful

Back to Help Center >