#6064

Intense Visions
Keymaster

David,

Hello!

Thank you for purchasing Intense. It was happenstance that I found the BeaverBuilder forum. It was interesting to read the comments.

I do see what you’re saying about the template. I will say, it’s hard for us to deal with single post templates. We don’t know exactly how your theme builds the headers and footers, so we do the best we can. I am not familiar with the BeaverBuilder theme, so I cannot say the best way to get the single post template to display exactly how you want. One thing you can do is to add two functions to your theme or child theme’s functions file. These functions will add content before and after the code generated by our single post template. This will allow you to better control the layout. I’ve added some code that looks like it might correct the issue you’re seeing.


add_action( 'intense_before_main_content', 'intense_before_main_content' );
function intense_before_main_content() {
	echo '<div class="fl-row fl-row-fixed-width fl-row-bg-none">' . 
		'<div class="fl-row-content-wrap">' . 
		'<div class="fl-row-content fl-row-fixed-width fl-node-content">';
}

add_action( 'intense_after_main_content', 'intense_after_main_content' );
function intense_after_main_content() {
	echo '</div>' .
		'</div>' .
		'</div>';
}

Please let me know if this doesn’t work.

Thanks,

Josh