<?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 - Tag: tag cloud - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/tag-cloud</link>
		<description>Support Forum - Tag: tag cloud - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Wed, 19 Jun 2013 03:19:57 +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/tags/tag-cloud" rel="self" type="application/rss+xml" />

		<item>
			<title>Boris on "How to change tag cloud design"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-tag-cloud-design#post-119275</link>
			<pubDate>Tue, 18 Jun 2013 20:28:46 +0000</pubDate>
			<dc:creator>Boris</dc:creator>
			<guid isPermaLink="false">119275@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Great! Thanks Samuel!&#60;br /&#62;
Please have a look. It says Tag Cloud and I dont know where that is coming from. Any idea where I could change that?&#60;/p&#62;
&#60;p&#62;thx&#60;/p&#62;
&#60;p&#62;Boris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to change tag cloud design"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-tag-cloud-design#post-119168</link>
			<pubDate>Tue, 18 Jun 2013 08:01:37 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">119168@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Replace &#60;/p&#62;
&#60;p&#62;&#60;code&#62;wp_tag_cloud(&#38;#39;smallest=12&#38;amp;largest=12&#38;amp;unit=px&#38;#39;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;with this&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$args = array( &#38;quot;title&#38;quot; =&#38;gt; &#38;quot;Most awesome title ever&#38;quot; );
do_utcw( $args );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The extra &#38;lt;?php tag is the culprit, I guess.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Boris on "How to change tag cloud design"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-tag-cloud-design#post-119054</link>
			<pubDate>Mon, 17 Jun 2013 18:54:16 +0000</pubDate>
			<dc:creator>Boris</dc:creator>
			<guid isPermaLink="false">119054@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;/p&#62;
&#60;p&#62;sorry guys for asking so much. I am just not into it enough.&#60;/p&#62;
&#60;p&#62;Step 1 worked (deleting that line)&#60;br /&#62;
Step 2 did not work (inserting the function call.) The site crashes totally.&#60;/p&#62;
&#60;p&#62;This is what I inserted:&#60;/p&#62;
&#60;p&#62;&#38;lt;?php do_utcw($args); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;as described here: &#60;a href=&#34;http://wordpress.org/plugins/ultimate-tag-cloud-widget/other_notes/#Theme-integration-/-Shortcode&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/plugins/ultimate-tag-cloud-widget/other_notes/#Theme-integration-/-Shortcode&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;This also did not work.&#60;/p&#62;
&#60;p&#62;What did I do wrong?&#60;/p&#62;
&#60;p&#62;Here is the whole snipped which crashed:&#60;/p&#62;
&#60;p&#62;echo '&#38;lt;div class=&#34;tab last_tab widget_tab_tags&#34;&#38;gt;&#38;lt;span&#38;gt;'.__('Tags', 'avia_framework').'&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;';&#60;br /&#62;
		echo &#34;&#38;lt;div class='tab_content tagcloud'&#38;gt;&#34;;&#60;/p&#62;
&#60;p&#62;        &#38;lt;?php&#60;br /&#62;
$args = array( &#34;title&#34; =&#38;gt; &#34;Most awesome title ever&#34; );&#60;/p&#62;
&#60;p&#62;do_utcw( $args );&#60;br /&#62;
		echo &#34;&#38;lt;/div&#38;gt;&#34;;&#60;/p&#62;
&#60;p&#62;		echo &#34;&#38;lt;/div&#38;gt;&#34;;&#60;br /&#62;
		echo $after_widget;&#60;/p&#62;
&#60;p&#62;Can you help again?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "How to change tag cloud design"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-tag-cloud-design#post-119008</link>
			<pubDate>Mon, 17 Jun 2013 15:20:25 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">119008@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Boris,&#60;/p&#62;
&#60;p&#62;No, you would be replacing that line of code with your own plugins php call to display the tag cloud. So in effect, you are telling the theme to use your plugins tag cloud function and not its won.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Boris on "How to change tag cloud design"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-tag-cloud-design#post-118989</link>
			<pubDate>Mon, 17 Jun 2013 13:53:07 +0000</pubDate>
			<dc:creator>Boris</dc:creator>
			<guid isPermaLink="false">118989@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;ok I try. same thing in sentence?&#60;br /&#62;
And do I replace it just with the codesnippets  from above?&#60;/p&#62;
&#60;p&#62;B.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to change tag cloud design"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-tag-cloud-design#post-118904</link>
			<pubDate>Mon, 17 Jun 2013 06:22:15 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">118904@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The tag cloud code can be found in wp-content\themes\enfold\framework\php\class-framework-widgets.php - search for&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;wp_tag_cloud(&#38;#39;smallest=12&#38;amp;largest=12&#38;amp;unit=px&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;- you can replace it with any other tag cloud function...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Boris on "How to change tag cloud design"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-tag-cloud-design#post-118827</link>
			<pubDate>Sun, 16 Jun 2013 19:57:42 +0000</pubDate>
			<dc:creator>Boris</dc:creator>
			<guid isPermaLink="false">118827@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ah one more: And how can this be done in the extra widget, that comes with the theme? (The one with latest comments, tags an so on)&#60;/p&#62;
&#60;p&#62;Best would be to integrate the output of that plugin I am using in the tag-section of the widget, too. If possible.&#60;br /&#62;
If not, I just would like to have it appear just the same (cloudy and no boarders)&#60;/p&#62;
&#60;p&#62;What do you think?&#60;/p&#62;
&#60;p&#62;Best&#60;/p&#62;
&#60;p&#62;Boris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Boris on "How to change tag cloud design"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-tag-cloud-design#post-118826</link>
			<pubDate>Sun, 16 Jun 2013 19:53:03 +0000</pubDate>
			<dc:creator>Boris</dc:creator>
			<guid isPermaLink="false">118826@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you! perfect support, like always! ;-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to change tag cloud design"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-tag-cloud-design#post-118773</link>
			<pubDate>Sun, 16 Jun 2013 10:07:16 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">118773@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Use following css code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.sidebar .tagcloud a {
background-color: transparent;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Boris on "How to change tag cloud design"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-tag-cloud-design#post-118685</link>
			<pubDate>Sat, 15 Jun 2013 19:49:09 +0000</pubDate>
			<dc:creator>Boris</dc:creator>
			<guid isPermaLink="false">118685@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;/p&#62;
&#60;p&#62;super! And how do I get rid of the rectangles around each tag? I just want the words without any boarders around.&#60;/p&#62;
&#60;p&#62;Thanks in advance! ;-)&#60;/p&#62;
&#60;p&#62;Best Boris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "How to change tag cloud design"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-tag-cloud-design#post-118666</link>
			<pubDate>Sat, 15 Jun 2013 16:11:21 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">118666@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Boris,&#60;/p&#62;
&#60;p&#62;Go into the css&#38;gt;layout.css file and on line 1742 delete the font size declaration so that its just:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.tagcloud a{
padding:2px 8px;
margin:0 1px 1px 0;
display:block;
float:left;
border-style: solid;
border-width: 1px;
text-decoration: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Boris on "How to change tag cloud design"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-tag-cloud-design#post-118608</link>
			<pubDate>Sat, 15 Jun 2013 10:17:17 +0000</pubDate>
			<dc:creator>Boris</dc:creator>
			<guid isPermaLink="false">118608@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I am using a third party tag cloud widget, because I wanted to have a real cloud instead of the default layout that comes wit the theme.&#60;br /&#62;
But the appearence is just the same, so I guess the theme overrules the style by default.&#60;br /&#62;
How can that be changed?&#60;/p&#62;
&#60;p&#62;How it looks now: &#60;a href=&#34;http://www.hebammenblog.de/&#34; rel=&#34;nofollow&#34;&#62;http://www.hebammenblog.de/&#60;/a&#62;&#60;br /&#62;
How it should look: &#60;a href=&#34;http://wordpress.org/plugins/ultimate-tag-cloud-widget/screenshots/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/plugins/ultimate-tag-cloud-widget/screenshots/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Best Boris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "inoperative tag cloud"</title>
			<link>http://www.kriesi.at/support/topic/inoperative-tag-cloud#post-70571</link>
			<pubDate>Sat, 11 Aug 2012 07:34:15 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">70571@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Glad that it works now :) &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David on "inoperative tag cloud"</title>
			<link>http://www.kriesi.at/support/topic/inoperative-tag-cloud#post-70540</link>
			<pubDate>Fri, 10 Aug 2012 23:53:15 +0000</pubDate>
			<dc:creator>David</dc:creator>
			<guid isPermaLink="false">70540@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;/p&#62;
&#60;p&#62;it finally works but in a strange way : i click on keywords, those who are just below the article (and it worked) and reset the plugin. That's all.&#60;br /&#62;
Thanks for your support.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "inoperative tag cloud"</title>
			<link>http://www.kriesi.at/support/topic/inoperative-tag-cloud#post-70429</link>
			<pubDate>Fri, 10 Aug 2012 06:19:36 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">70429@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey David,&#60;/p&#62;
&#60;p&#62;Make sure that no other page in your site has a name similar to &#34;motclé-produit&#34;. The page slugs (the name displayed in browser navigation bar URL) and permalinks can be a bit troublesome.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David on "inoperative tag cloud"</title>
			<link>http://www.kriesi.at/support/topic/inoperative-tag-cloud#post-70244</link>
			<pubDate>Thu, 09 Aug 2012 10:25:25 +0000</pubDate>
			<dc:creator>David</dc:creator>
			<guid isPermaLink="false">70244@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;correction : &#34;this is the one i use&#34;&#60;/p&#62;
&#60;p&#62;english is not my natural language...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David on "inoperative tag cloud"</title>
			<link>http://www.kriesi.at/support/topic/inoperative-tag-cloud#post-70243</link>
			<pubDate>Thu, 09 Aug 2012 10:24:21 +0000</pubDate>
			<dc:creator>David</dc:creator>
			<guid isPermaLink="false">70243@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;this is the one is use ! (my translation above was not totally correct &#34;WooCommerce Keywords Products&#34; = &#34;WooCommerce Product Tags&#34;)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "inoperative tag cloud"</title>
			<link>http://www.kriesi.at/support/topic/inoperative-tag-cloud#post-70179</link>
			<pubDate>Thu, 09 Aug 2012 07:20:30 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">70179@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi David,&#60;/p&#62;
&#60;p&#62;Try to use this widget &#34;WooCommerce Product Tags&#34; in Appearance &#38;gt; Widget. It is available once woocommerce plugin is installed. I used it and it works. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David on "inoperative tag cloud"</title>
			<link>http://www.kriesi.at/support/topic/inoperative-tag-cloud#post-70029</link>
			<pubDate>Wed, 08 Aug 2012 16:19:15 +0000</pubDate>
			<dc:creator>David</dc:creator>
			<guid isPermaLink="false">70029@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dude, Ismael ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David on "inoperative tag cloud"</title>
			<link>http://www.kriesi.at/support/topic/inoperative-tag-cloud#post-69562</link>
			<pubDate>Mon, 06 Aug 2012 07:35:21 +0000</pubDate>
			<dc:creator>David</dc:creator>
			<guid isPermaLink="false">69562@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;the tag cloud widget i use is calling &#34;WooCommerce Mots-Clés Produits&#34; (WooCommerce Keywords Products in english).&#60;br /&#62;
If you want to reproduce the issue, you just have to go on the homepage :&#60;br /&#62;
&#60;a href=&#34;http://www.davidbernard.fr&#34; rel=&#34;nofollow&#34;&#62;http://www.davidbernard.fr&#60;/a&#62;&#60;br /&#62;
and on the rightbar, you'll see the tag cloud widget inoperate.&#60;br /&#62;
Is that what you mean ? &#60;/p&#62;
&#60;p&#62;David
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "inoperative tag cloud"</title>
			<link>http://www.kriesi.at/support/topic/inoperative-tag-cloud#post-69531</link>
			<pubDate>Mon, 06 Aug 2012 06:05:51 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">69531@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Which tag cloud widget are you using? Can you direct us to the plugin so that we can reproduce the issue?&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David on "inoperative tag cloud"</title>
			<link>http://www.kriesi.at/support/topic/inoperative-tag-cloud#post-69451</link>
			<pubDate>Sun, 05 Aug 2012 12:54:38 +0000</pubDate>
			<dc:creator>David</dc:creator>
			<guid isPermaLink="false">69451@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;i can't find it...Do you have an idea where it could be?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "inoperative tag cloud"</title>
			<link>http://www.kriesi.at/support/topic/inoperative-tag-cloud#post-69418</link>
			<pubDate>Sun, 05 Aug 2012 06:44:17 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">69418@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Please try to change the slug - maybe &#34;motclé-produit&#34; causes the issue. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David on "inoperative tag cloud"</title>
			<link>http://www.kriesi.at/support/topic/inoperative-tag-cloud#post-69415</link>
			<pubDate>Sun, 05 Aug 2012 06:18:03 +0000</pubDate>
			<dc:creator>David</dc:creator>
			<guid isPermaLink="false">69415@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael,&#60;/p&#62;
&#60;p&#62;wherever you find the tag cloud...on the home page for example :&#60;br /&#62;
&#60;a href=&#34;http://www.davidbernard.fr&#34; rel=&#34;nofollow&#34;&#62;http://www.davidbernard.fr&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "inoperative tag cloud"</title>
			<link>http://www.kriesi.at/support/topic/inoperative-tag-cloud#post-69394</link>
			<pubDate>Sun, 05 Aug 2012 02:55:23 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">69394@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi dbernard,&#60;/p&#62;
&#60;p&#62;Can you post a specific link in your site with that has the issue?&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David on "inoperative tag cloud"</title>
			<link>http://www.kriesi.at/support/topic/inoperative-tag-cloud#post-69352</link>
			<pubDate>Sat, 04 Aug 2012 19:13:06 +0000</pubDate>
			<dc:creator>David</dc:creator>
			<guid isPermaLink="false">69352@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;on davidbernard.fr , i put the widget tag cloud widget from woocommerce but this one is not working and i don't know why... We land on a 404 error page. Any idea ?&#60;/p&#62;
&#60;p&#62;David
&#60;/p&#62;</description>
		</item>
		<item>
			<title>boudoirs on "tag cloud appearance"</title>
			<link>http://www.kriesi.at/support/topic/tag-cloud-appearance#post-41725</link>
			<pubDate>Wed, 15 Feb 2012 00:13:08 +0000</pubDate>
			<dc:creator>boudoirs</dc:creator>
			<guid isPermaLink="false">41725@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ok, thank you very much Dude, will transmit
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "tag cloud appearance"</title>
			<link>http://www.kriesi.at/support/topic/tag-cloud-appearance#post-41676</link>
			<pubDate>Tue, 14 Feb 2012 17:49:33 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">41676@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;As I don't use such a widget myself I can't post a link but it will look like the standard tag cloud (see &#34;hot tags&#34; at the bottom of the page here: &#60;a href=&#34;http://kriesi.at/support/&#34; rel=&#34;nofollow&#34;&#62;http://kriesi.at/support/&#60;/a&#62; )
&#60;/p&#62;</description>
		</item>
		<item>
			<title>boudoirs on "tag cloud appearance"</title>
			<link>http://www.kriesi.at/support/topic/tag-cloud-appearance#post-41642</link>
			<pubDate>Tue, 14 Feb 2012 14:38:40 +0000</pubDate>
			<dc:creator>boudoirs</dc:creator>
			<guid isPermaLink="false">41642@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;All right, my friend told me it's quite a job to do and was wondering what would be the visual result. Any example of what it's looks like after to send me please?&#60;br /&#62;
many thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>boudoirs on "tag cloud appearance"</title>
			<link>http://www.kriesi.at/support/topic/tag-cloud-appearance#post-41215</link>
			<pubDate>Sat, 11 Feb 2012 11:33:35 +0000</pubDate>
			<dc:creator>boudoirs</dc:creator>
			<guid isPermaLink="false">41215@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Allright,&#60;/p&#62;
&#60;p&#62;Thank you very much Dude, I'll pass on to my friend so he'll apply. Regarding the creation on my own pluggin, well let's say it's a good joke ;)&#60;br /&#62;
Cheers,&#60;br /&#62;
S
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
