<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>BlueOwlCreative  &#187;  Topic: Sidebar problem and template</title>
		<atom:link href="https://blueowlcreative.com/support_wp/forums/topic/sidebar-problem-and-template/feed/" rel="self" type="application/rss+xml" />
		<link>https://blueowlcreative.com/support_wp/forums/topic/sidebar-problem-and-template/feed/</link>
		<description></description>
		<pubDate>Sat, 29 Aug 2026 03:32:26 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/sidebar-problem-and-template/#post-28238</guid>
					<title><![CDATA[Sidebar problem and template]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/sidebar-problem-and-template/#post-28238</link>
					<pubDate>Mon, 25 Apr 2016 09:54:57 +0000</pubDate>
					<dc:creator>Elyes95200</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,<br />
I try to assign by default a custom sidebar &#8216;formation&#8217; to a template but not working, if you can help please<br />
Thank you</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/sidebar-problem-and-template/#post-28254</guid>
					<title><![CDATA[Reply To: Sidebar problem and template]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/sidebar-problem-and-template/#post-28254</link>
					<pubDate>Tue, 26 Apr 2016 06:22:02 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>What is this template?<br />
A custom one? Where are you assigning the sidebar for this template?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/sidebar-problem-and-template/#post-28298</guid>
					<title><![CDATA[Reply To: Sidebar problem and template]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/sidebar-problem-and-template/#post-28298</link>
					<pubDate>Sat, 30 Apr 2016 10:39:39 +0000</pubDate>
					<dc:creator>Elyes95200</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,<br />
Following the page template, how can i assign by default the sidebar &#8216;formation&#8217; as a right sidebar without using theme options ?<br />
Thank you</p>
<pre><code>
&lt;?php 
/**
 *
 * BOC main page template
 * @package WordPress
 */

get_header(); ?&gt;

	&lt;!-- Page template :: START --&gt;
	&lt;div &lt;?php post_class(&#039;&#039;); ?&gt; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &gt;
		&lt;div class=&quot;container&quot;&gt;
			&lt;div class=&quot;section&quot;&gt;
				&lt;?php
				// Check Sidebar Layout
				//$sidebar_layout = esc_html(boc_page_sidebar_layout());

				// IF Sidebar Left
				//if($sidebar_layout == &#039;left-sidebar&#039;){
				//	get_sidebar();
				//}
		
				//if($sidebar_layout != &#039;full-width&#039;){
					echo &quot;&lt;div class=&#039;post_content col span_3_of_4&#039;&gt;&quot;;
				//}else {
				//	echo &quot;&lt;div class=&#039;post_content&#039;&gt;&quot;;
				//}
				?&gt;

				&lt;?php while (have_posts()) : the_post(); ?&gt;
				&lt;?php the_content() ?&gt;
				&lt;?php wp_link_pages(array(
					&#039;before&#039; =&gt; &quot;&lt;div class=&#039;pagination&#039;&gt;&lt;div class=&#039;links&#039;&gt;&quot;,
					&#039;after&#039; =&gt; &quot;&lt;/div&gt;&lt;/div&gt;&quot;,
				   )); ?&gt;
				&lt;?php endwhile; ?&gt;
				
				&lt;?php 
				$show_page_comments	= ot_get_option(&#039;show_page_comments&#039;,&#039;off&#039;) == &#039;on&#039;;
				if($show_page_comments) { 
					comments_template(&#039;&#039;, true);
				} 
				?&gt;
				
				&lt;?php 
				// Close &quot;post_content&quot;
				echo &quot;&lt;/div&gt;&quot;;

				// IF Sidebar Right
				if($sidebar_layout == &#039;right-sidebar&#039;){
					get_sidebar( &#039;formation&#039; );
				}
				?&gt;
			&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;
	&lt;!-- Page template :: END --&gt;	

&lt;?php get_footer(); ?&gt;	
</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/sidebar-problem-and-template/#post-28299</guid>
					<title><![CDATA[Reply To: Sidebar problem and template]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/sidebar-problem-and-template/#post-28299</link>
					<pubDate>Sat, 30 Apr 2016 10:52:28 +0000</pubDate>
					<dc:creator>Elyes95200</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,<br />
Perhaps, i have to replace :</p>
<p>get_sidebar( &#8216;formation&#8217; );<br />
by<br />
dynamic_sidebar( &#8216;formation&#8217; ); </p>
<p>?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/sidebar-problem-and-template/#post-28300</guid>
					<title><![CDATA[Reply To: Sidebar problem and template]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/sidebar-problem-and-template/#post-28300</link>
					<pubDate>Sat, 30 Apr 2016 10:55:02 +0000</pubDate>
					<dc:creator>Elyes95200</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,<br />
Fixed via :</p>
<p>echo &#8220;&lt;div id=&#8217;sidebar&#8217; class=&#8217;col span_1_of_4 sidebar&#8217;&gt;&#8221;;<br />
dynamic_sidebar( &#8216;formation&#8217; );<br />
echo &#8220;&lt;/div&gt;&#8221;;</p>
<p>Thank you</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/sidebar-problem-and-template/#post-28311</guid>
					<title><![CDATA[Reply To: Sidebar problem and template]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/sidebar-problem-and-template/#post-28311</link>
					<pubDate>Tue, 03 May 2016 08:35:39 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Great job! <img src="https://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

