<?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: Corona - removing Author and Category next to an individual post content</title>
		<link>http://www.kriesi.at/support/topic/corona-removing-author-and-category-next-to-an-individual-post-content</link>
		<description>Support Forum - Topic: Corona - removing Author and Category next to an individual post content</description>
		<language>en-US</language>
		<pubDate>Tue, 18 Jun 2013 06:58:15 +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/corona-removing-author-and-category-next-to-an-individual-post-content" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Corona - removing Author and Category next to an individual post content"</title>
			<link>http://www.kriesi.at/support/topic/corona-removing-author-and-category-next-to-an-individual-post-content#post-41204</link>
			<pubDate>Sat, 11 Feb 2012 08:13:01 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">41204@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes - it requires the same code.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andybezara on "Corona - removing Author and Category next to an individual post content"</title>
			<link>http://www.kriesi.at/support/topic/corona-removing-author-and-category-next-to-an-individual-post-content#post-41133</link>
			<pubDate>Fri, 10 Feb 2012 14:59:26 +0000</pubDate>
			<dc:creator>andybezara</dc:creator>
			<guid isPermaLink="false">41133@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dude&#60;/p&#62;
&#60;p&#62;Thank you&#60;/p&#62;
&#60;p&#62;Worked fine in Corona!&#60;/p&#62;
&#60;p&#62;But I need to do the same in shouttbox? Is the same procedure?&#60;/p&#62;
&#60;p&#62;Thank you&#60;/p&#62;
&#60;p&#62;Andy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Corona - removing Author and Category next to an individual post content"</title>
			<link>http://www.kriesi.at/support/topic/corona-removing-author-and-category-next-to-an-individual-post-content#post-41057</link>
			<pubDate>Fri, 10 Feb 2012 07:37:12 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">41057@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
add following code to css/custom.css:&#60;/p&#62;
&#60;p&#62;.blog-meta{&#60;br /&#62;
display: none !important;&#60;br /&#62;
}
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andybezara on "Corona - removing Author and Category next to an individual post content"</title>
			<link>http://www.kriesi.at/support/topic/corona-removing-author-and-category-next-to-an-individual-post-content#post-40975</link>
			<pubDate>Thu, 09 Feb 2012 17:53:27 +0000</pubDate>
			<dc:creator>andybezara</dc:creator>
			<guid isPermaLink="false">40975@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello&#60;/p&#62;
&#60;p&#62;My client asked to delete/hide/remove all (date, comments, category and user) in all posts&#60;/p&#62;
&#60;p&#62;22 Dec 2011 / Comentarios inhabilitados / en Uncategorized/por Admin &#60;/p&#62;
&#60;p&#62;How can I do that in Corona and Shotubox?&#60;/p&#62;
&#60;p&#62;Thank you so much&#60;/p&#62;
&#60;p&#62;Andy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kriesi on "Corona - removing Author and Category next to an individual post content"</title>
			<link>http://www.kriesi.at/support/topic/corona-removing-author-and-category-next-to-an-individual-post-content#post-40895</link>
			<pubDate>Thu, 09 Feb 2012 11:16:52 +0000</pubDate>
			<dc:creator>Kriesi</dc:creator>
			<guid isPermaLink="false">40895@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey!&#60;/p&#62;
&#60;p&#62;If you want to do that only on single blog pages its rather easy: each body tag has a unique class with the id of teh current post.&#60;/p&#62;
&#60;p&#62;for example this page: &#60;a href=&#34;http://www.kriesi.at/themes/corona/2011/03/31/this-is-a-nice-post/&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/themes/corona/2011/03/31/this-is-a-nice-post/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;has the body class: single single-post postid-282 single-format-standard (just look at the html source code to see it)&#60;/p&#62;
&#60;p&#62;you can now use the following to hide thhose elements:&#60;/p&#62;
&#60;pre&#62;
.postid-282 .blog-categories, #top.postid-282 .blog-author{display:none;}
&#60;/pre&#62;
&#60;p&#62;if you want to do that on post overview pages (pages that display multiple blog entries) you need to modify the loop-index.php file in folder includes:&#60;/p&#62;
&#60;p&#62;line 14 should read: &#60;a href=&#34;http://pastie.org/3347440&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/3347440&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;now you can use the same snippet as above to hide the elements.&#60;/p&#62;
&#60;p&#62;Last but not least: you might notice that the &#34;/&#34; symbols are still there: you also need to modify them in the loop-index.php file. search foe every occurence of:&#60;/p&#62;
&#60;p&#62;class='text-sep'&#60;/p&#62;
&#60;p&#62;and modify each one to make it read &#60;/p&#62;
&#60;p&#62;class='text-sep text-sep-1'&#60;br /&#62;
class='text-sep text-sep-2'&#60;/p&#62;
&#60;p&#62;etc&#60;/p&#62;
&#60;p&#62;with the additional class you can now also target those separators and hide them&#60;/p&#62;
&#60;pre&#62;
.postid-282 .text-sep-2{display:none;}
&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Mig75 on "Corona - removing Author and Category next to an individual post content"</title>
			<link>http://www.kriesi.at/support/topic/corona-removing-author-and-category-next-to-an-individual-post-content#post-39000</link>
			<pubDate>Fri, 27 Jan 2012 22:31:09 +0000</pubDate>
			<dc:creator>Mig75</dc:creator>
			<guid isPermaLink="false">39000@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Sorry, but I didn't find on the forum how to remove the author and category on individual post, leaving only date and comments.&#60;br /&#62;
I found how to remove all the items but not how to remove one or two ...&#60;br /&#62;
Thanks for you help.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
