How Do I Disable This?

Is this a header, and how do I disable it? I want navigation on the left and content on the right.

Hi Ken,

Thank you for writing in, that’s a container. Please use a Blank - No Container, Header | Footer page template on your page.



Hope it helps,
Cheers!

That worked. Thank you!

Is there a way to make that setting global, or do I need to manually set it on each page?

Hi Ken,

Unfortunately, it’s not possible to set it globally since it’s a page template. But, if you wish to force it through code then you can do it, example, you can add this code to your child theme’s functions.php

add_filter( 'template_include', 'force_page_template', 99 );

function force_page_template( $template ) {

	if ( is_page( ) ) {
		$new_template = locate_template( array( 'template-blank-4.php' ) );
		if ( !empty( $new_template ) ) {
			return $new_template;
		}
	}

	return $template;
}

The problem with this is, you’re setting the same templates in all pages affecting your other pages meant to use different templates.

Thanks!

Excellent. Thank you!

We are delighted to assist you with this.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.