• Resolved asky09

    (@asky09)


    Hello,

    how can I change or delete the sidebar? I tried a lot of functions but I can’t change anything.

    I am grateful for any help!

    Luisa

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Kindly add the below code to the child theme’s functions.php file to do it –

    function my_post_layout_class( $class ) {
    
    	if ( is_singular( 'advert' ) ) {
    		$class = 'full-width';
    	}
    	return $class;
    
    }
    add_filter( 'ocean_post_layout_class', 'my_post_layout_class', 20 );
    Thread Starter asky09

    (@asky09)

    ouu thank you very much!!

    Thread Starter asky09

    (@asky09)

    you are my hero

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How can I delete the sidebar’ is closed to new replies.