When I launch Beaver Builder from the Toolset dashboard, I get a page with a sidebar and post title that I can't delete. How do I get rid of the sidebar and Post Title, I would like full control over the page.
Hello,
Thanks for the details, I can login into your website and see the problem.
I assume we are talking about this URL:
hidden link
The "content template" of Toolset Views plugin works only in post content area, those sidebar and post title are outputted from your theme file.
I suggest you try these:
1) Copy theme file "single.php" of parent theme "Beaver Builder Theme", save it in the child theme folder using file name "single-dealer-locators.php"
https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
2) Edit above theme file "single-dealer-locators.php", find and remove the sidebar and post title, and test again.
Thanks. I removed the sidebar but can't delete the the title. Below is the code for my "single-dealer-locators.php" page
<?php get_header(); ?>
<div class="container">
<div class="row">
<div class="fl-content">
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
get_template_part( 'content', 'single' );
endwhile;
endif;
?>
</div>
</div>
</div>
<?php get_footer(); ?>
As you can see there is one line in your codes:
get_template_part( 'content', 'single' );
It will load theme file "content-single.php", so you can copy theme file "content-single.php" from parent theme folder "Beaver Builder Theme", save it in the child theme folder using same file name "content-single.php", and edit it, remove the post title:
<?php the_title(); ?>