Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #1414692
Boxed layout only for homepage
Closed

Comments

  •  1
    SimsWorld started the conversation

    Hi! Is it possibile to set the boxed layout only for the homepage?

  •  2,699
    PenciDesign replied

    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:

    /**
     * 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