Site logo

Archived topic

Separate Container For Blog Section

7 replies · Started by Rpn on December 26, 2020

Viewing posts 1–8 of 8

Hello GeneratePress Team,

I want this type of Separate Containers in my blog page, But not in my single post :)

Right now my blog section is looking like this :(

Thanks!

Hi there,

Any chance you can link us to the site in question?

You can use the private information field.

Let me know :)

Have a look at this :)

Hello?

Try this PHP filter:

add_filter( 'option_generate_settings', function( $settings ) {
    if ( is_single() ) {
        $settings['content_layout_setting'] = 'one-container';
    }

    return $settings;
} );

Adding PHP: https://docs.generatepress.com/article/adding-php/

No change!

Hi there,

Can you try the function again? I just tweaked it a little.

Let us know :)

Still No Change!

Anyways leave :)

I don't want to use it now :0

This archived topic is closed to new replies.