I'm trying to add a custom page template to show only one sidebar for specific pages.
I created a template page in thesis folder and I put these lines
<?php echo thesis_header(); ?>
<?php echo thesis_nav_menu(); ?>
<div id="custom-page">
<div class="content-column">
<?php echo thesis_content(); ?>
</div>
<div class="sidebars">
<?php echo thesis_sidebar_1(); ?>
</div>
</div>
<?php echo thesis_footer_area(); ?>
I found this code in a tutorial but when I open any page with this template, page doesnt show up correctly. Because all < head>< /head> section is missing. thesis_header() function doesnt bring html page's section.
My question; how can I add all those section just like thesis_html_framework() does?
thanks..
I could not found a reasonable method and I decided to modify structure with jQuery. This is the custom template file to show only one sidebar. I know not perfect solution, but it saved the day.