<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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>bbPress Plugin Browser &#187; Tag: related - Recent Posts</title>
		<link>http://bbpress.org/plugins/tags/related</link>
		<description>bbPress Plugin Browser &#187; Tag: related - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 10 Feb 2012 02:39:38 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/plugins/rss/tags/related" rel="self" type="application/rss+xml" />

		<item>
			<title>Ihor on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/page/2/#post-6481</link>
			<pubDate>Thu, 28 Apr 2011 19:59:12 +0000</pubDate>
			<dc:creator>Ihor</dc:creator>
			<guid isPermaLink="false">6481@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>First solution broke javascript:<br />
<code><br />
if (!isset($_GET['related-topics'])) {if ( true === (bool) nicer_permalinks_enabled() ) $link=get_topic_nicer_link($link);}<br />
</code>
</p>]]></description>
					</item>
		<item>
			<title>Ihor on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/page/2/#post-6478</link>
			<pubDate>Thu, 28 Apr 2011 18:15:53 +0000</pubDate>
			<dc:creator>Ihor</dc:creator>
			<guid isPermaLink="false">6478@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>To have Nicer Permalinks plugin (<a href="http://bbpress.org/plugins/topic/nicer-permalinks/" rel="nofollow">http://bbpress.org/plugins/topic/nicer-permalinks/</a>) working together with Related Topics you should add<br />
<code><br />
if ( true === (bool) nicer_permalinks_enabled() ) $link=get_topic_nicer_link($link);<br />
</code><br />
after<br />
<code><br />
	foreach ($topics as $topic) {<br />
		if ( $rewrite ) {<br />
			$link = $bb_uri . "topic/" . $topic-&#62;$column;<br />
</code>
</p>]]></description>
					</item>
		<item>
			<title>josepjc on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/page/2/#post-4623</link>
			<pubDate>Fri, 25 Sep 2009 19:26:48 +0000</pubDate>
			<dc:creator>josepjc</dc:creator>
			<guid isPermaLink="false">4623@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>1) you must change de css file.
</p>]]></description>
					</item>
		<item>
			<title>bbiSimone on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/page/2/#post-4538</link>
			<pubDate>Wed, 09 Sep 2009 14:44:49 +0000</pubDate>
			<dc:creator>bbiSimone</dc:creator>
			<guid isPermaLink="false">4538@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Works a charm! Two more questions,</p>
<p>1) How can I give '&#60;h2&#62;Related Topics&#60;/h2&#62;' a h2 class="X"?<br />
2) Is there a way to display nothing, when no related posts are found? So the whole div will be hidden?</p>
<p>Cheers _ck_
</p>]]></description>
					</item>
		<item>
			<title>bbiSimone on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/page/2/#post-4537</link>
			<pubDate>Wed, 09 Sep 2009 14:00:15 +0000</pubDate>
			<dc:creator>bbiSimone</dc:creator>
			<guid isPermaLink="false">4537@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Great stuff, I'll report back, and thanks!
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/#post-4535</link>
			<pubDate>Wed, 09 Sep 2009 11:28:01 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">4535@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>That's a good idea as far as the replies, I think an except is going to be too much text unless you make it a title attribute.</p>
<p>You'd go into<br />
<code>function related_topics_get_links($list) {</code></p>
<p>The line that does the output is<br />
<pre><code>$links[$topic-&#62;topic_id]=&#34;&#60;a href=&#39;&#34;.attribute_escape($link).&#34;&#39;&#62;&#34;.wp_specialchars( $topic-&#62;topic_title, ENT_QUOTES).&#34;&#60;/a&#62;&#34;;</code></pre>
<p>But you'd also need the data, so first change this line<br />
<pre><code>$query=&#34;SELECT topic_id,topic_slug,topic_title,topic_posts FROM $bbdb-&#62;topics $where LIMIT &#34;.$related_topics[&#39;maximum_items&#39;];</code></pre>
<p>Then you can change this like so:<br />
<pre><code>$links[$topic-&#62;topic_id]=&#34;&#60;a href=&#39;&#34;.attribute_escape($link).&#34;&#39;&#62;&#34;.wp_specialchars( $topic-&#62;topic_title.&#34; ($topic-&#62;topic_posts)&#34;, ENT_QUOTES).&#34;&#60;/a&#62;&#34;;</code></pre>]]></description>
					</item>
		<item>
			<title>bbiSimone on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/#post-4534</link>
			<pubDate>Wed, 09 Sep 2009 10:35:43 +0000</pubDate>
			<dc:creator>bbiSimone</dc:creator>
			<guid isPermaLink="false">4534@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Hey _CK_ is there any easy way to add an excerpt to the related titles? Or even add number of replies etc? I mean once you have the posts, one should be able to modifiy them like the rest of the template?
</p>]]></description>
					</item>
		<item>
			<title>the_Wish on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/#post-4522</link>
			<pubDate>Mon, 07 Sep 2009 22:51:11 +0000</pubDate>
			<dc:creator>the_Wish</dc:creator>
			<guid isPermaLink="false">4522@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Did the latest update change anything regarding the collision with the Hidden Forums Plugin?
</p>]]></description>
					</item>
		<item>
			<title>Kar-l on "Enhanced Tag Heat Map"</title>
			<link>http://bbpress.org/plugins/topic/enhanced-tag-heat-map/#post-3996</link>
			<pubDate>Fri, 17 Jul 2009 21:00:47 +0000</pubDate>
			<dc:creator>Kar-l</dc:creator>
			<guid isPermaLink="false">3996@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>OK, I managed to run it. First, get the newest version (mine is from track) and remember to add prototype script.
</p>]]></description>
					</item>
		<item>
			<title>Kar-l on "Enhanced Tag Heat Map"</title>
			<link>http://bbpress.org/plugins/topic/enhanced-tag-heat-map/#post-3993</link>
			<pubDate>Fri, 17 Jul 2009 14:52:43 +0000</pubDate>
			<dc:creator>Kar-l</dc:creator>
			<guid isPermaLink="false">3993@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Actually version: 1.1.1 seems to generate valid JS (no above mentioned errors), yet it won't work. bb 1.01. ?
</p>]]></description>
					</item>
		<item>
			<title>taboo on "Enhanced Tag Heat Map"</title>
			<link>http://bbpress.org/plugins/topic/enhanced-tag-heat-map/#post-3938</link>
			<pubDate>Sat, 11 Jul 2009 11:52:05 +0000</pubDate>
			<dc:creator>taboo</dc:creator>
			<guid isPermaLink="false">3938@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>It's a great little plugin!</p>
<p>...and pitty it won't work in v1.o1</p>
<p><code>tag_relation[2] = new Array(<br />
&#60;b&#62;Warning&#60;/b&#62;:  Invalid argument supplied for foreach() in &#60;b&#62;/(...)/enhanced-tag-heat-map.php&#60;/b&#62; on line &#60;b&#62;421&#60;/b&#62;<br />
);</code></p>
<p>Any chance for an upgrade?
</p>]]></description>
					</item>
		<item>
			<title>kirpi.it on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/#post-2819</link>
			<pubDate>Sun, 15 Feb 2009 09:58:07 +0000</pubDate>
			<dc:creator>kirpi.it</dc:creator>
			<guid isPermaLink="false">2819@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>&#62; vary the terms ('crema' and 'catalana' ) and see what happens</p>
<p>Actually, by further testing it, one can<br />
  a) get no error and have a nice list of related topics;<br />
  b) get the error and also a related topics list;<br />
  c) get just the error.</p>
<p>It all seems to be dependent fron the "keywords" used.<br />
I do not know *why* the error is generated, but as one obviously cannot control the keywords, I'm afraid I have to deactivate this pugin.<br />
Pity, for it is really nice!
</p>]]></description>
					</item>
		<item>
			<title>slambert1971 on "Enhanced Tag Heat Map"</title>
			<link>http://bbpress.org/plugins/topic/enhanced-tag-heat-map/#post-2710</link>
			<pubDate>Tue, 27 Jan 2009 17:26:29 +0000</pubDate>
			<dc:creator>slambert1971</dc:creator>
			<guid isPermaLink="false">2710@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>I am using this plugin but there is a problem as it breaks W3C standards. Line 397 of your code is:</p>
<p><code>&#60;style&#62;</code></p>
<p>should be</p>
<p>&#60;style type="text/css"&#62;</p>
<p>Thanks.
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/#post-2622</link>
			<pubDate>Sun, 18 Jan 2009 06:10:01 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">2622@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>It's really strange as that query works fine for me on mysql 4 and mysql 5.<br />
Maybe it's the results of those search terms specifically not meshing somehow.</p>
<p>Do you have phpmyadmin?  Maybe try that query directly and see if it also gives an error, or vary the terms ('crema' and 'catalana' ) and see what happens
</p>]]></description>
					</item>
		<item>
			<title>kirpi.it on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/#post-2619</link>
			<pubDate>Sat, 17 Jan 2009 21:47:39 +0000</pubDate>
			<dc:creator>kirpi.it</dc:creator>
			<guid isPermaLink="false">2619@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>I also get:<br />
<pre><code>bbPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near &#39;SELECT &#39;crema&#39; AS wd UNION SELECT &#39;catalana&#39; ) AS v1 ON s1.top]
SELECT topic_id, COUNT(*) as count FROM bb_topics AS s1 JOIN (SELECT &#39;crema&#39; AS wd UNION SELECT &#39;catalana&#39; ) AS v1 ON s1.topic_slug LIKE CONCAT(&#39;%&#39;,v1.wd,&#39;%&#39;) GROUP BY s1.topic_id HAVING count&#62;=1 ORDER BY count DESC LIMIT 100</code></pre>
<p>&#62; You get that on every page load?</p>
<p>No. Just on the initial load. As I reload the page no error is shown. </p>
<p>&#62; Do related topics actually come up?</p>
<p>Never.</p>
<p>&#62; bbpress 0.9 or 1.0?</p>
<p>0.9.0.4</p>
<p>&#62; mysql 4 or 5? </p>
<p>Mysql 5 on Linux/Apache </p>
<p>What do you think, please?
</p>]]></description>
					</item>
		<item>
			<title>marco76tv on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/#post-2544</link>
			<pubDate>Wed, 07 Jan 2009 10:24:39 +0000</pubDate>
			<dc:creator>marco76tv</dc:creator>
			<guid isPermaLink="false">2544@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>sorry <a href="www.partyxtutti.com">party x tutti</a>
</p>]]></description>
					</item>
		<item>
			<title>marco76tv on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/#post-2543</link>
			<pubDate>Wed, 07 Jan 2009 10:24:08 +0000</pubDate>
			<dc:creator>marco76tv</dc:creator>
			<guid isPermaLink="false">2543@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>i use it on [a]www.partyxtutti.com[/a]
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/#post-2418</link>
			<pubDate>Sat, 20 Dec 2008 15:46:26 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">2418@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Interesting. You get that on every page load?<br />
Do related topics actually come up?<br />
bbpress 0.9 or 1.0?<br />
Any chance you know if you are using mysql 4 or 5?
</p>]]></description>
					</item>
		<item>
			<title>rokdd on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/#post-2414</link>
			<pubDate>Sat, 20 Dec 2008 10:25:31 +0000</pubDate>
			<dc:creator>rokdd</dc:creator>
			<guid isPermaLink="false">2414@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Hi, that is a nice plugin...! but i get on first page load an error: </p>
<p>bbPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT 'normalized' AS wd UNION SELECT 'material' UNION SELEC]<br />
SELECT topic_id, COUNT(*) as count FROM bbpressforumtopics AS s1 JOIN (SELECT 'normalized' AS wd UNION SELECT 'material' UNION SELECT 'functions' ) AS v1 ON s1.topic_slug LIKE CONCAT('%',v1.wd,'%') GROUP BY s1.topic_id HAVING count&#62;=1 ORDER BY count DESC LIMIT 100</p>
<p>i guess that it is a problem of related topics plugin? Thanks for any help or people with same problems!
</p>]]></description>
					</item>
		<item>
			<title>johnhiler on "Related Topics"</title>
			<link>http://bbpress.org/plugins/topic/related-topics/#post-2321</link>
			<pubDate>Mon, 08 Dec 2008 00:21:59 +0000</pubDate>
			<dc:creator>johnhiler</dc:creator>
			<guid isPermaLink="false">2321@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Ah neat!  Maybe user-volunteers could do something similar...  a plugin like that could also let user-volunteers vote on whether or not a topic/post is spam or not.
</p>]]></description>
					</item>

	</channel>
</rss>

