<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Topic: Add Comment-Field on Pages</title>
		<link>http://www.kriesi.at/support/topic/add-comment-field-on-pages</link>
		<description>Support Forum - Topic: Add Comment-Field on Pages</description>
		<language>en-US</language>
		<pubDate>Sat, 25 May 2013 01:10:17 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/add-comment-field-on-pages" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Beard on "Add Comment-Field on Pages"</title>
			<link>http://www.kriesi.at/support/topic/add-comment-field-on-pages#post-34181</link>
			<pubDate>Thu, 08 Dec 2011 02:45:19 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">34181@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You're using double quotes for your echo's and for your classes. Try&#60;br /&#62;
&#60;code&#62;&#38;lt;div class=\&#38;quot;hr hr_post_seperator\&#38;quot;&#38;gt;&#60;/code&#62;&#60;br /&#62;
See the backslashes? These make sure the quotes are read as you intend them to be read.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>burn4ever on "Add Comment-Field on Pages"</title>
			<link>http://www.kriesi.at/support/topic/add-comment-field-on-pages#post-33152</link>
			<pubDate>Sat, 26 Nov 2011 08:29:18 +0000</pubDate>
			<dc:creator>burn4ever</dc:creator>
			<guid isPermaLink="false">33152@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Alright, works fine.&#60;br /&#62;
But one last question.&#60;/p&#62;
&#60;p&#62;How can I add in that new page-template with the comments filed the seperator tag above? (&#38;lt;div class=&#34;hr hr_post_seperator&#34;&#38;gt;&#38;lt;/div&#38;gt;)&#60;/p&#62;
&#60;p&#62;//wordpress function that loads the comments template &#34;comments.php&#34;&#60;br /&#62;
echo &#34;&#38;lt;div class=&#34;hr hr_post_seperator&#34;&#38;gt;&#34;;&#60;br /&#62;
comments_template( '/includes/comments.php');&#60;br /&#62;
echo &#34;&#38;lt;/div&#38;gt;&#38;lt;!--end inner_box--&#38;gt;&#34;;&#60;/p&#62;
&#60;p&#62;is not working.....cause I´m not the php guy ;-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Beard on "Add Comment-Field on Pages"</title>
			<link>http://www.kriesi.at/support/topic/add-comment-field-on-pages#post-33049</link>
			<pubDate>Fri, 25 Nov 2011 01:31:43 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">33049@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Then you'll have to create a new page template and assign that template to your page. Simply copy the template file normally used by your pages, then rename it and put the commenting in. Now, you'll be able to use a template with &#38;amp; a template without comments. *Note sometimes the comments mess up on pages that weren't intended to have comments.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>burn4ever on "Add Comment-Field on Pages"</title>
			<link>http://www.kriesi.at/support/topic/add-comment-field-on-pages#post-33038</link>
			<pubDate>Thu, 24 Nov 2011 20:56:07 +0000</pubDate>
			<dc:creator>burn4ever</dc:creator>
			<guid isPermaLink="false">33038@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hmmm,&#60;br /&#62;
but what happend if I want the commentfield only on 2 of 5 normal pages?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Add Comment-Field on Pages"</title>
			<link>http://www.kriesi.at/support/topic/add-comment-field-on-pages#post-32243</link>
			<pubDate>Fri, 18 Nov 2011 08:08:14 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">32243@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
open up page.php and replace:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;quot;&#38;lt;/div&#38;gt;&#38;lt;!--end inner_box--&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;//wordpress function that loads the comments template &#38;quot;comments.php&#38;quot;
									comments_template( &#38;#39;/includes/comments.php&#38;#39;); 

									echo &#38;quot;&#38;lt;/div&#38;gt;&#38;lt;!--end inner_box--&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>burn4ever on "Add Comment-Field on Pages"</title>
			<link>http://www.kriesi.at/support/topic/add-comment-field-on-pages#post-32208</link>
			<pubDate>Thu, 17 Nov 2011 21:20:56 +0000</pubDate>
			<dc:creator>burn4ever</dc:creator>
			<guid isPermaLink="false">32208@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
is it possible to add an Commentfield under the content on an normal Page (none article).
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
