<?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: Getting rid of the tags in blog page and read more translation</title>
		<link>http://www.kriesi.at/support/topic/getting-rid-of-the-tags-in-blog-page-and-read-more-translation</link>
		<description>Support Forum - Topic: Getting rid of the tags in blog page and read more translation</description>
		<language>en-US</language>
		<pubDate>Fri, 24 May 2013 10:46:59 +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/getting-rid-of-the-tags-in-blog-page-and-read-more-translation" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Getting rid of the tags in blog page and read more translation"</title>
			<link>http://www.kriesi.at/support/topic/getting-rid-of-the-tags-in-blog-page-and-read-more-translation#post-62974</link>
			<pubDate>Sat, 30 Jun 2012 07:00:56 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">62974@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Glad that the issue is solved now :) &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>leocantoemello on "Getting rid of the tags in blog page and read more translation"</title>
			<link>http://www.kriesi.at/support/topic/getting-rid-of-the-tags-in-blog-page-and-read-more-translation#post-62447</link>
			<pubDate>Wed, 27 Jun 2012 14:10:16 +0000</pubDate>
			<dc:creator>leocantoemello</dc:creator>
			<guid isPermaLink="false">62447@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Mya,&#60;br /&#62;
Reading it again I've noticed you have put the option to insert the tag in the quick css. Then I tried, and then it did work!&#60;br /&#62;
So, many thanks. Problem solved.&#60;br /&#62;
Regards&#60;br /&#62;
Leonardo
&#60;/p&#62;</description>
		</item>
		<item>
			<title>leocantoemello on "Getting rid of the tags in blog page and read more translation"</title>
			<link>http://www.kriesi.at/support/topic/getting-rid-of-the-tags-in-blog-page-and-read-more-translation#post-62247</link>
			<pubDate>Tue, 26 Jun 2012 13:22:53 +0000</pubDate>
			<dc:creator>leocantoemello</dc:creator>
			<guid isPermaLink="false">62247@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Sorry, it doesn't work...&#60;br /&#62;
Regarding the tags:&#60;br /&#62;
In upscale, the custom.css file is a empty file, there is only one comment there. Anyway I've inserted the line you wrote, with the page ID 56 (checked in the browser), but it had no results.&#60;br /&#62;
Regarding the translations:&#60;br /&#62;
Both the archive.php and the template_blog.php don't have any line regarding the &#34;read more&#34;.&#60;/p&#62;
&#60;p&#62;May you help me?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "Getting rid of the tags in blog page and read more translation"</title>
			<link>http://www.kriesi.at/support/topic/getting-rid-of-the-tags-in-blog-page-and-read-more-translation#post-62133</link>
			<pubDate>Tue, 26 Jun 2012 03:08:03 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">62133@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi leocantoeme,&#60;/p&#62;
&#60;p&#62;To answer your first question you would need to add the following to your custom.css or Quick CSS under Theme Options.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;body.page-id-## .blog-tags {
display: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The ## should be replaced with the ID of your Blog page. You can find this either by &#34;View Source&#34; or &#34;Page Source&#34; in your browser and looking at the BODY tag.&#60;/p&#62;
&#60;p&#62;Example:&#60;br /&#62;
&#60;code&#62;&#38;lt;body id=&#38;quot;top&#38;quot; class=&#38;quot;page page-id-56 page-template-default&#38;quot;&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;You can translate the Read More button by editing the templates &#60;strong&#62;template_blog.php&#60;/strong&#62; and &#60;strong&#62;single.php&#60;/strong&#62;. The line you're looking for is:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;the_content(&#38;#39;Read more&#38;#39;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;You'll also want to edit &#60;strong&#62;archive.php&#60;/strong&#62; at this line:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;a href=&#38;quot;&#38;lt;?php echo get_permalink(); ?&#38;gt;&#38;quot; class=&#38;quot;more-link&#38;quot;&#38;gt;Read more&#38;lt;/a&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;You said Blog page but in case you want to translate for the Portfolio section as well you would edit the same line as you did in archive.php except you the template you edit would be &#60;strong&#62;template_portfolio.php&#60;/strong&#62;.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>leocantoemello on "Getting rid of the tags in blog page and read more translation"</title>
			<link>http://www.kriesi.at/support/topic/getting-rid-of-the-tags-in-blog-page-and-read-more-translation#post-61426</link>
			<pubDate>Thu, 21 Jun 2012 14:10:48 +0000</pubDate>
			<dc:creator>leocantoemello</dc:creator>
			<guid isPermaLink="false">61426@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello? Any answers?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>leocantoemello on "Getting rid of the tags in blog page and read more translation"</title>
			<link>http://www.kriesi.at/support/topic/getting-rid-of-the-tags-in-blog-page-and-read-more-translation#post-61058</link>
			<pubDate>Wed, 20 Jun 2012 03:15:18 +0000</pubDate>
			<dc:creator>leocantoemello</dc:creator>
			<guid isPermaLink="false">61058@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear dudes,&#60;br /&#62;
1 - How may I get rid ot the tags in blog page - not the post pages&#60;br /&#62;
2 - How may I translate the 'read more' button in blog page&#60;br /&#62;
Thanks in advance for your help
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
