<?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; Topic: Topics Per Page</title>
		<link>http://bbpress.org/plugins/topic/front-page-topics/</link>
		<description>bbPress Plugin Browser &#187; Topic: Topics Per Page</description>
		<language>en-US</language>
		<pubDate>Fri, 25 May 2012 16:07:06 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/plugins/rss/topic/front-page-topics" rel="self" type="application/rss+xml" />

		<item>
			<title>Farhad on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/4/#post-5432</link>
			<pubDate>Sun, 14 Feb 2010 07:28:46 +0000</pubDate>
			<dc:creator>Farhad</dc:creator>
			<guid isPermaLink="false">5432@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>how can change direction of page number to right to left?
</p>]]></description>
					</item>
		<item>
			<title>longjorn on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-4751</link>
			<pubDate>Wed, 14 Oct 2009 21:04:21 +0000</pubDate>
			<dc:creator>longjorn</dc:creator>
			<guid isPermaLink="false">4751@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>I was trying to get the title tag of the forum to reflect on which page you are. Actually it showed on all pages of front-page just the forum's name. So you have duplicate titles for different content on subsequent pages.</p>
<p>So I used a similar way as in WordPress to show in the title tag on page one just the 'forum's name' and on the following pages 'forum's name page X'</p>
<p>I changed in header.php the title /title tag to read like this<br />
<pre><code>&#60;title&#62;&#60;?php bb_title() ?&#62;&#60;?php if (is_front() &#38;&#38; $page&#62;1) {echo(&#34; page $page&#34; ); } ?&#62;&#60;/title&#62;</code></pre>
<p>It seems to work and I just wanted to share - thanks for the plugin!
</p>]]></description>
					</item>
		<item>
			<title>Rubber on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-4520</link>
			<pubDate>Mon, 07 Sep 2009 09:02:50 +0000</pubDate>
			<dc:creator>Rubber</dc:creator>
			<guid isPermaLink="false">4520@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Can you add support (or coordinate a fix with them) so that this works with BBPM? Thanks!</p>
<p>(Right now BBPM seems to default to showing however many pm's based on the current number setting in "topics-per-page" that is set for 'front-page' displayed topics ... strange!...)
</p>]]></description>
					</item>
		<item>
			<title>anandasama on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-4504</link>
			<pubDate>Fri, 04 Sep 2009 08:34:39 +0000</pubDate>
			<dc:creator>anandasama</dc:creator>
			<guid isPermaLink="false">4504@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>There is no fix or workaround for this?
</p>]]></description>
					</item>
		<item>
			<title>anandasama on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-4407</link>
			<pubDate>Fri, 21 Aug 2009 10:03:07 +0000</pubDate>
			<dc:creator>anandasama</dc:creator>
			<guid isPermaLink="false">4407@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Breaks my theme too. I used same code in 1.0.1 and worked perfectly there so it might have to do with the 1.0.2 version.
</p>]]></description>
					</item>
		<item>
			<title>unholyfruitbat on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-4391</link>
			<pubDate>Thu, 20 Aug 2009 04:14:56 +0000</pubDate>
			<dc:creator>unholyfruitbat</dc:creator>
			<guid isPermaLink="false">4391@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Whenever I add it after &#60;/table&#62; as suggested it seems to break everything on the page. I'm using 1.0.2 and the inove theme.
</p>]]></description>
					</item>
		<item>
			<title>unholyfruitbat on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-4389</link>
			<pubDate>Thu, 20 Aug 2009 03:48:06 +0000</pubDate>
			<dc:creator>unholyfruitbat</dc:creator>
			<guid isPermaLink="false">4389@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>With a theme with code like this, where does the div code get inserted? </p>
<p>&#60;?php if ( $super_stickies ) : foreach ( $super_stickies as $topic ) : ?&#62;<br />
&#60;tr&#60;?php topic_class(); ?&#62;&#62;<br />
        &#60;td&#62;&#60;?php bb_topic_labels(); ?&#62; &#60;big&#62;<a>"&#62;&#60;?php topic_title(); ?&#62;</a>&#60;/big&#62;&#60;/td&#62;<br />
        &#60;td class="num"&#62;&#60;?php topic_posts(); ?&#62;&#60;/td&#62;<br />
        &#60;td class="num"&#62;&#60;?php topic_last_poster(); ?&#62;&#60;/td&#62;<br />
        &#60;td class="num"&#62;<a>"&#62;&#60;?php topic_time(); ?&#62;</a>&#60;/td&#62;<br />
&#60;/tr&#62;<br />
&#60;?php endforeach; endif; // $super_stickies ?&#62;</p>
<p>&#60;?php if ( $topics ) : foreach ( $topics as $topic ) : ?&#62;<br />
&#60;tr&#60;?php topic_class(); ?&#62;&#62;<br />
        &#60;td&#62;&#60;?php bb_topic_labels(); ?&#62; <a>"&#62;&#60;?php topic_title(); ?&#62;</a>&#60;/td&#62;<br />
        &#60;td class="num"&#62;&#60;?php topic_posts(); ?&#62;&#60;/td&#62;<br />
        &#60;td class="num"&#62;&#60;?php topic_last_poster(); ?&#62;&#60;/td&#62;<br />
        &#60;td class="num"&#62;<a>"&#62;&#60;?php topic_time(); ?&#62;</a>&#60;/td&#62;<br />
&#60;/tr&#62;<br />
&#60;?php endforeach; endif; // $topics ?&#62;<br />
&#60;/table&#62;<br />
&#60;?php endif; // $topics or $super_stickies ?&#62;
</p>]]></description>
					</item>
		<item>
			<title>dragunoff on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-4365</link>
			<pubDate>Tue, 18 Aug 2009 20:09:18 +0000</pubDate>
			<dc:creator>dragunoff</dc:creator>
			<guid isPermaLink="false">4365@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Thanks! It now works!
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-4301</link>
			<pubDate>Sat, 15 Aug 2009 05:37:30 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">4301@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Actually the problem is the opposite, they are NOT using rewrite slugs (aka pretty permalinks)</p>
<p>I think I broke that with the last update, let me go fix.</p>
<p>Please try 0.0.7 when you see it here and let me know.
</p>]]></description>
					</item>
		<item>
			<title>johnhiler on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-4298</link>
			<pubDate>Fri, 14 Aug 2009 22:05:59 +0000</pubDate>
			<dc:creator>johnhiler</dc:creator>
			<guid isPermaLink="false">4298@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>@dragunoff - Did you add this to your htaccess?</p>
<p>If you use rewrite slugs you MUST add the following rule to your .htaccess file</p>
<p>RewriteRule ^page/([0-9]+)/?$ /forums/?page=$1 [L,QSA]</p>
<p>anywhere before &#60;/IfModule&#62; where /forums/ is the path to your bbpress install.
</p>]]></description>
					</item>
		<item>
			<title>dragunoff on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-4279</link>
			<pubDate>Thu, 13 Aug 2009 10:45:38 +0000</pubDate>
			<dc:creator>dragunoff</dc:creator>
			<guid isPermaLink="false">4279@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>hi, there</p>
<p>neat little plugin but front page pagination still does not work for me. I am not using pretty permalinks but the front page links show slugs like this <code>forums/page/{page#}</code> and therefore it leads to a 404 error</p>
<p>There are no rules in my .htacces. Am I doing something wrong?
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-3879</link>
			<pubDate>Tue, 07 Jul 2009 11:08:55 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">3879@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>valen, are you saying the error goes away when this plugin is deactivated?</p>
<p>I vaguely remember that error from a pagination bug I found in 0.9 but I thought Sam fixed in .905
</p>]]></description>
					</item>
		<item>
			<title>Derek Herman on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-3877</link>
			<pubDate>Tue, 07 Jul 2009 09:41:27 +0000</pubDate>
			<dc:creator>Derek Herman</dc:creator>
			<guid isPermaLink="false">3877@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>I have an issue. I am running a 0.9 forum with no pretty permalinks and am getting this error:</p>
<p>Warning: preg_replace() [function.preg-replace]: Compilation failed: nothing to repeat at offset 0 in /Applications/xampp/xamppfiles/htdocs/fsw-forum/bb-includes/template-functions.php on line 943</p>
<p>How can I fix this?
</p>]]></description>
					</item>
		<item>
			<title>fernandot on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-2620</link>
			<pubDate>Sat, 17 Jan 2009 22:29:30 +0000</pubDate>
			<dc:creator>fernandot</dc:creator>
			<guid isPermaLink="false">2620@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Manuel, I'm using the plugin and works fine in my blog. I've follow the readme.txt instructions step by step and everything goes well :)</p>
<p>Great plugin!
</p>]]></description>
					</item>
		<item>
			<title>mmeida on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-2556</link>
			<pubDate>Fri, 09 Jan 2009 21:07:25 +0000</pubDate>
			<dc:creator>mmeida</dc:creator>
			<guid isPermaLink="false">2556@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Ok! It works know, with problems (error if I want to return to page 1), but enough for me.</p>
<p>Thanks, _ck_
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-2551</link>
			<pubDate>Fri, 09 Jan 2009 04:34:18 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">2551@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>I guess you are using 1.0 and they broke something.<br />
See if it even needs line 33 at all by commenting it out like this<br />
<code>// add_filter(&#39;get_latest_topics_limit&#39;,&#39;front_page_pagination&#39;,999);</code>
</p>]]></description>
					</item>
		<item>
			<title>mmeida on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-2542</link>
			<pubDate>Wed, 07 Jan 2009 04:40:56 +0000</pubDate>
			<dc:creator>mmeida</dc:creator>
			<guid isPermaLink="false">2542@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Hi, I have this DB error message with the paginate items:</p>
<blockquote><p>DB Error in BB_Query::query: 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 'OFFSET 15' at line 1</p>
<p>SELECT   t.* FROM bbmv_topics AS t  WHERE t.topic_status = '0' AND t.topic_sticky != '2'   ORDER BY t.topic_time DESC LIMIT 15, 15 OFFSET 15</p></blockquote>
<p>You can see it at <a href="http://foro.mangasverdes.es" rel="nofollow">http://foro.mangasverdes.es</a>.</p>
<p>Rewrite rules are in the .htaccess.
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-2306</link>
			<pubDate>Fri, 05 Dec 2008 20:52:55 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">2306@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Works perfectly!
</p>]]></description>
					</item>
		<item>
			<title>TrishaM on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-2173</link>
			<pubDate>Tue, 04 Nov 2008 18:45:17 +0000</pubDate>
			<dc:creator>TrishaM</dc:creator>
			<guid isPermaLink="false">2173@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Perfect!!  That worked flawlessly - thanks so much for updating your plugin for this!</p>
<p>And don't worry - we've all had those late-night post problems........it's too bad browsers aren't programmed to stop us and say "HEY!  Are you SURE you want to post that??? It doesn't make sense...".......LOL
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Topics Per Page"</title>
			<link>http://bbpress.org/plugins/topic/front-page-topics/page/3/#post-2172</link>
			<pubDate>Tue, 04 Nov 2008 18:24:47 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">2172@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>D'oh ! Note to self to not post so late at night.</p>
<p>It has to go AFTER the table close:</p>
<pre><code>&#60;?php endforeach; endif; // $topics ?&#62;
&#60;/table&#62;
&#60;div class=&#34;nav&#34;&#62;&#60;?php front_page_pages(); ?&#62;&#60;/div&#62;</code></pre>
<p><em> </em><br />
sorry about that...
</p>]]></description>
					</item>

	</channel>
</rss>

