Comments 1SimsWorld started the conversationDecember 28, 2017 at 3:32pmHi! Is it possibile to set the boxed layout only for the homepage? 2,700PenciDesign repliedDecember 29, 2017 at 2:43amHi,To do that, please go to Customize > General Options > make sure you don't check to "Enable Body Boxed". After that, try add more this code at the end of functions.php file like on this image: /** * Enable body boxed layout for homepage only */if( ! function_exists( 'penci_enable_body_boxed_homepage_only' ) ) { function penci_enable_body_boxed_homepage_only( $data ) { if( is_home() || is_front_page() ) { return true; } else { return $data; } } add_filter( 'theme_mod_penci_body_boxed_layout', 'penci_enable_body_boxed_homepage_only' );}Best Regards,PenciDesign Sign in to reply ...
Hi! Is it possibile to set the boxed layout only for the homepage?
Hi,
To do that, please go to Customize > General Options > make sure you don't check to "Enable Body Boxed".
After that, try add more this code at the end of functions.php file like on this image:
Best Regards,
PenciDesign