<?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>Wordpress and Webdesign Forum go41 &#187; Forum: bbpress discussion - Recent Topics</title>
		<link>http://forum.go41.de/forum/bbpress-discussion</link>
		<description>How To, tips, php and css code for your WordPress site</description>
		<language>en-US</language>
		<pubDate>Fri, 10 Feb 2012 12:13:30 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://forum.go41.de/rss/forum/bbpress-discussion/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>Xarzu on "How do I install a bbPress theme?"</title>
			<link>http://forum.go41.de/topic/how-do-i-install-a-bbpress-theme#post-55</link>
			<pubDate>Wed, 28 Oct 2009 04:38:02 +0000</pubDate>
			<dc:creator>Xarzu</dc:creator>
			<guid isPermaLink="false">55@http://forum.go41.de/</guid>
			<description><![CDATA[<p>How do I install a bbPress theme?  I created the "my-templates" directory and I unzipped my theme into a folder in that directory.  But when I go to my bbPress dashboard, the screenshot for my new theme shows a blank space with a red X in the upper left corner.  When I click to "Activate" the theme it shows a featureless version of bbPress with no theme at all.</p>
<p>Wie installiere ich ein bbPress Thema? Ich habe "my-Vorlagen"-Verzeichnis entpackt und ich mein Thema in einen Ordner in diesem Verzeichnis. Aber wenn ich in mein bbPress Armaturenbrett, zeigt der Screenshot fÃ¼r mein neues Thema ein Leerzeichen mit einem roten X in der oberen linken Ecke. Wenn ich auf "Aktivieren" das Thema es zeigt einen gesichtslosen Version mit bbPress Ã¼berhaupt kein Thema.
</p>]]></description>
					</item>
		<item>
			<title>masteradmin on "Upgrading this forum from bbpress 0.9.0.5 to bbpress 1.1"</title>
			<link>http://forum.go41.de/topic/upgrading-this-forum-from-bbpress-0905-to-bbpress-11#post-1070</link>
			<pubDate>Sun, 23 Oct 2011 16:01:32 +0000</pubDate>
			<dc:creator>masteradmin</dc:creator>
			<guid isPermaLink="false">1070@http://forum.go41.de/</guid>
			<description><![CDATA[<p>I just upgraded the forum software used here from version <strong>0.9.0.5 to bbpress 1.1</strong></p>
<p>Actually bbpress is now available a plugin for WordPress, bbpress 2.0 plugin, which might be the next step for me. As it is not possible to import/convert bbpress 0.9x to the plugin 2.0 version, I had to go this upgrade path via bbpress 1.1</p>
<p>Switching to this latest and last standalone bbpress worked flawless as it seems by now.</p>
<p>Just two plugins I used seem to be obsolete, as they are buikt in now.</p>
<p>One is the plugin 'Subscribe to Topic' which gave you the chance to be emailed on updates.<br />
Possibly you have to use the 'Notify me of follow-up posts via email' marker below to renew your email subscription - we will see.</p>
<p>The second plugin not needed anymore is 'Topics Per Page' for pagination, I just set topics per page in the dashboard now.</p>
<p>On converting the database I realized once again that all spam and deleted posts/topics are still kept in this database...</p>
<p>I deleted them in phpmyadmin in four steps:</p>
<p>First 'delete' all spam topics in your forum dashboard to get marked as deleted</p>
<p>(BACKUP FIRST by EXPORTING, WHO KNOWS)</p>
<p>Second delete all posts in this marked as deleted topics as sql in phpmyadmin:<br />
<pre><code>DELETE FROM bb_posts WHERE post_id IN (
    SELECT post_id FROM (
        SELECT DISTINCT(p.post_id)
        FROM bb_posts AS p LEFT JOIN bb_topics AS t ON p.topic_id=t.topic_id
        WHERE t.topic_status=1
    ) AS bb_posts_in_deleted_topics
);</code></pre>
<p>Third: remove all deleted posts:<br />
<pre><code>DELETE FROM bb_posts WHERE post_status=1;</code></pre>
<p>At last remove all deleted topics:<br />
<pre><code>DELETE FROM bb_topics WHERE topic_status=1;</code></pre>
<p>I think now the database is cleaner and you should recount posts in the Tools of your Dashboard, just tick all boxes.
</p>]]></description>
					</item>
		<item>
			<title>Joern on "Display excerpt of first and last post in front-page.php"</title>
			<link>http://forum.go41.de/topic/display-excerpt-of-first-and-last-post-in-front-pagephp#post-691</link>
			<pubDate>Sat, 16 Oct 2010 09:45:35 +0000</pubDate>
			<dc:creator>Joern</dc:creator>
			<guid isPermaLink="false">691@http://forum.go41.de/</guid>
			<description><![CDATA[<p>As you can see I am displaying the first posts excerpt here in this bbPress forum by running</p>
<p>make_excerpt(get_post_text($post-&#62;post_id));</p>
<p>and the last answers excerpt by using</p>
<p>make_excerpt( get_post_text( $topic-&#62;topic_last_post_id ) );</p>
<p>The problem arising is that with only one post it will display the text twice, as the first post is also the last one.</p>
<p>The full code I use so far is:</p>
<pre><code>&#60;p class=&#34;quest&#34;&#62;
&#60;?php $post = bb_get_first_post(get_topic_id());
echo make_excerpt(get_post_text($post-&#62;post_id)); ?&#62;
&#60;/p&#62;
&#60;p class=&#34;ans&#34;&#62;
&#60;?php echo make_excerpt( get_post_text( $topic-&#62;topic_last_post_id ) ); ?&#62;
&#60;/p&#62;</code></pre>
<p>To solve this I am going to echo The ID of each post to see what's going on.<br />
I want to show an answer only if the first post's ID $post-&#62;post_id is not equal to $topic-&#62;topic_last_post_id.</p>
<p>The code above with an echo of the ID:<br />
<pre><code>&#60;p class=&#34;quest&#34;&#62;
&#60;?php $post = bb_get_first_post(get_topic_id());
echo $post-&#62;post_id;
echo make_excerpt(get_post_text($post-&#62;post_id)); ?&#62;
&#60;/p&#62;
&#60;p class=&#34;ans&#34;&#62;
&#60;?php echo $topic-&#62;topic_last_post_id;
echo make_excerpt( get_post_text( $topic-&#62;topic_last_post_id ) ); ?&#62;
&#60;/p&#62;</code></pre>
<p>Have to post now to see something .. ;-)<br />
How I did it will come as soon it works in the answer to this post
</p>]]></description>
					</item>
		<item>
			<title>golfguy on "Adding sub sub page for Arthemia theme menu"</title>
			<link>http://forum.go41.de/topic/adding-sub-sub-page-for-arthemia-theme-menu#post-410</link>
			<pubDate>Wed, 26 May 2010 02:49:05 +0000</pubDate>
			<dc:creator>golfguy</dc:creator>
			<guid isPermaLink="false">410@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Hello,</p>
<p>I wanted to add an additional sub sub menu page to my Arthemia theme.  As of now it only allows for Page and Sub Page and not sure how to code another level.  </p>
<p>Thank you in advance,</p>
<p>Matthew
</p>]]></description>
					</item>
		<item>
			<title>fiazio on "Godaddy free hosting and forums :"</title>
			<link>http://forum.go41.de/topic/godaddy-free-hosting-and-forums#post-154</link>
			<pubDate>Thu, 18 Feb 2010 12:53:48 +0000</pubDate>
			<dc:creator>fiazio</dc:creator>
			<guid isPermaLink="false">154@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Hello,<br />
I just wanted to know whether it is possible to put up a forum at the free hosting that godaddy provides.<br />
Thank you.
</p>]]></description>
					</item>
		<item>
			<title>Xarzu on "Fresh bbpress and wordpress installation"</title>
			<link>http://forum.go41.de/topic/fresh-bbpress-and-wordpress-installation#post-54</link>
			<pubDate>Thu, 15 Oct 2009 16:39:25 +0000</pubDate>
			<dc:creator>Xarzu</dc:creator>
			<guid isPermaLink="false">54@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Hi Forum!</p>
<p>I have managed to download and install BBPress and WordPress and I got them to sync up with the plugins from WordPress that make that happen.  Now I just need to tweek it just right so it will behave and look like I want it too.</p>
<p>It would be nice to find someone who has been through these steps.  I could use some pointers.
</p>]]></description>
					</item>
		<item>
			<title>masteradmin on "bbpress front-page pagination Items per page"</title>
			<link>http://forum.go41.de/topic/bbpress-front-page-pagination-items-per-page#post-52</link>
			<pubDate>Wed, 14 Oct 2009 10:47:13 +0000</pubDate>
			<dc:creator>masteradmin</dc:creator>
			<guid isPermaLink="false">52@http://forum.go41.de/</guid>
			<description><![CDATA[<p>It took a while to find out that bbPress 0.9.0.5 doesn't use pagination on the frontpage.<br />
Having more topics than what is set in admin under 'Items per page:' will make the older ones disappear.<br />
It took a while to find the plugin 'Topics Per Page' ( <a href="http://bbpress.org/plugins/topic/front-page-topics/" rel="nofollow">http://bbpress.org/plugins/topic/front-page-topics/</a> ) which gives you a pagination bar with page numbers.</p>
<p>Installation went easy, putting it in the my-plugins/ folder after setting the number of topics or posts I wanted on each page. Edit topics-per-page.php to do this.</p>
<p>Now in front-page.php you still have to place the call for the function front_page_pages(); AFTER &#60;?php endforeach; endif; // $topics ?&#62; &#60;/table&#62;</p>
<p>Sure putting this code in the file and not activating the plugin first will make your frontpage stop running after this call. It's better to check first 'if function_exists'</p>
<p>In my front-page.php it looks like this now:<br />
<pre><code>&#60;?php endforeach; endif; // $topics ?&#62;
&#60;/table&#62;
&#60;?php	if (function_exists(&#39;front_page_pages&#39;)) { ?&#62;
&#60;div class=&#34;nav&#34;&#62;&#60;?php front_page_pages(); ?&#62;&#60;/div&#62;
&#60;?php } // end front_page_pages ?&#62;</code></pre>
<p>Where the first two lines should be already in your file!</p>
<p>Finally in readme.txt it says 'if you use rewrite slugs you MUST add a rule to your .htaccess'</p>
<p>The suggested rule <code>RewriteRule ^page/([0-9]+)/?$ /forums/?page=$1 [L,QSA]</code> works well if your forum is installed in a folder called /forums/</p>
<p>I installed it in the root folder of a subdomain, so for this installation I used<br />
<pre><code>RewriteRule ^page/([0-9]+)/?$ /?page=$1 [L,QSA]</code></pre>
<p>Now I enjoy pagination on the frontpage of bbPress, thanks to the Contributors _ck_ and mdawaffe
</p>]]></description>
					</item>
		<item>
			<title>masteradmin on "Set font size range for hot tags in bb_tag_heat_map"</title>
			<link>http://forum.go41.de/topic/set-font-size-range-for-hot-tags-in-bb_tag_heat_map#post-29</link>
			<pubDate>Sun, 03 May 2009 23:07:45 +0000</pubDate>
			<dc:creator>masteradmin</dc:creator>
			<guid isPermaLink="false">29@http://forum.go41.de/</guid>
			<description><![CDATA[<p>As long tags got truncated in by overflow hidden in my hot tags display, I looked for a way to adjust the size for biggest and smallest tags in this BBPress 0.9.0.4 heatmap.</p>
<p>That's by far not as easy as in WordPress itself, not just an option or a matter of style.css.</p>
<p>In BBPress 0.9.0.4 you have to pass a parameter to &#60;?php bb_tag_heat_map(); ?&#62;<br />
You find this call in front-page.php of your template (theme)</p>
<p>Default on my forum was 8pt and 22pt for smallest and largest, to change this I succeeded by changing &#60;?php bb_tag_heat_map(); ?&#62; to<br />
<pre><code>&#60;?php bb_tag_heat_map(array( &#39;smallest&#39; =&#62; 10, &#39;largest&#39; =&#62; 30, &#39;unit&#39; =&#62; &#39;px&#39;, &#39;limit&#39; =&#62; 40 )); ?&#62;</code></pre>
<p>or to get points pt again another parameter:<br />
<pre><code>&#60;?php bb_tag_heat_map(array( &#39;smallest&#39; =&#62; 8, &#39;largest&#39; =&#62; 18, &#39;unit&#39; =&#62; &#39;pt&#39;, &#39;limit&#39; =&#62; 40 )); ?&#62;</code></pre>
<p>Just try if that works for you to change the size of your tag cloud in BBPress.
</p>]]></description>
					</item>
		<item>
			<title>masteradmin on "sitemap for bbpress, how I did that"</title>
			<link>http://forum.go41.de/topic/sitemap-for-bbpress-how-i-did-that#post-5</link>
			<pubDate>Thu, 12 Feb 2009 09:19:42 +0000</pubDate>
			<dc:creator>masteradmin</dc:creator>
			<guid isPermaLink="false">5@http://forum.go41.de/</guid>
			<description><![CDATA[<p>As I think a sitemap.xml is important for any website I got the latest sitemap plugin for bbpress here:<br />
<a href="http://plugins-dev.bbpress.org/browser/bbpress-sitemap-generator/trunk/bbpress_sitemap.php" rel="nofollow">http://plugins-dev.bbpress.org/browser/bbpress-sitemap-generator/trunk/bbpress_sitemap.php</a></p>
<p>I edited this bbpress_sitemap.php on line 16 to look like this:</p>
<p>$sitemap_file = $_SERVER['DOCUMENT_ROOT']."/sitemap.xml";</p>
<p>as my bbpress is installed in the root folder of a sub-domain, the sitemap.xml should also be in the root.</p>
<p>After changing the reference to the location of this file (sitemap.xml) I uploaded bbpress_sitemap.php to the new created my-plugins folder.</p>
<p>Before enabling it I created an empty file sitemap.xml in the root of the forum and set the rights to 777.</p>
<p>I enabled the plugin and to trigger the sitemap creation just opened one post and saved it. With FileZilla ftp client I could see that the previously empty file now increased in size - it was successfully created</p>
<p>Still get problems with empty links to tag pages however...
</p>]]></description>
					</item>
		<item>
			<title>masteradmin on "robots.txt for bbpress, what to put in?"</title>
			<link>http://forum.go41.de/topic/robotstxt-for-bbpress-what-to-put-in#post-4</link>
			<pubDate>Thu, 12 Feb 2009 08:55:17 +0000</pubDate>
			<dc:creator>masteradmin</dc:creator>
			<guid isPermaLink="false">4@http://forum.go41.de/</guid>
			<description><![CDATA[<p>I didn't find a robots.txt file for bbpress. There are many crawlers looking for this file first so best to have one in your root folder.</p>
<p>The content of my current robots.txt file is now:</p>
<p><strong>User-agent: Mediapartners-Google*<br />
Disallow:</p>
<p>User-agent: *<br />
Disallow: /bb-admin/<br />
Disallow: /bb-cache/<br />
Disallow: /bb-includes/<br />
Disallow: /bb-plugins/<br />
Disallow: /bb-templates/<br />
Disallow: /my-plugins/<br />
Disallow: /my-templates/<br />
Disallow: /plesk-stat/</p>
<p>sitemap: <a href="http://forum.go41.de/sitemap.xml" rel="nofollow">http://forum.go41.de/sitemap.xml</a></strong></p>
<p>Actually I disallow most of the folders, still would like to disallow 'login'</p>
<p>Sitemap I use is from: <a href="http://boakes.org/download/bbpress_sitemap.txt" rel="nofollow">http://boakes.org/download/bbpress_sitemap.txt</a>
</p>]]></description>
					</item>

	</channel>
</rss>

