<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress Support Forums User Favorites: gspark</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums User Favorites: gspark</description>
<language>en</language>
<pubDate>Thu, 08 Jan 2009 14:16:08 +0000</pubDate>

<item>
<title>Anonymous on "*seamless* wordpress integration"</title>
<link>http://bbpress.org/forums/topic/seemless-wordpress-integration/page/2#post-17746</link>
<pubDate>Mon, 28 Jul 2008 14:07:06 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">17746@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;vilimaunula - thanks for the help. i'm going to try to digest what you've done - this is way more complicated that what i've done in the past. but i'll check it out and will let you know how it goes!
&#60;/p&#62;</description>
</item>
<item>
<title>vilimaunula on "*seamless* wordpress integration"</title>
<link>http://bbpress.org/forums/topic/seemless-wordpress-integration/page/2#post-17741</link>
<pubDate>Mon, 28 Jul 2008 06:47:58 +0000</pubDate>
<dc:creator>vilimaunula</dc:creator>
<guid isPermaLink="false">17741@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;deliciousbass:&#60;/p&#62;
&#60;p&#62;The &#34;latest discussions&#34; list at &#60;a href=&#34;http://akirakurosawa.info/forums/&#34; rel=&#34;nofollow&#34;&#62;http://akirakurosawa.info/forums/&#60;/a&#62; is compiled without the use of Wordpress or bbPress loops. Instead, it makes use of two direct hand-crafted MySQL queries to the database, one to the Wordpress tables and the other to the bbPress ones.&#60;/p&#62;
&#60;p&#62;Basically, both queries search for all the posts (or comments, in the case of Wordpress) written in the past month, then put these posts into various arrays. The arrays are then sorted so that the items are in a reversed chronological order, and finally the resulting list is displayed on the page with only the latest post/comment from each thread/blogpost/page included.&#60;/p&#62;
&#60;p&#62;In case it is any help, here is the code that I use -- I wouldn't suggest just copy-pasting it to your site though before reading it through and knowing what you are doing. You may at least need to change the table names. I have added comments to give some idea what is done where.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.vertebratesilence.com/bbpress_frontpage_discussions.txt&#34;&#62;See the code here&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;There most probably is a simpler way to do this, the php code could be streamlined, made more error-resistant, and it could possibly also be done with Wordpress/bbPress tags, or it could be turned into a plugin, if someone has the time and the energy.
&#60;/p&#62;</description>
</item>
<item>
<title>Anonymous on "*seamless* wordpress integration"</title>
<link>http://bbpress.org/forums/topic/seemless-wordpress-integration/page/2#post-17711</link>
<pubDate>Sun, 27 Jul 2008 20:42:49 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">17711@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;vilimaunula - your site akirakurosawa.info is an quite impressive integration of WP and BBPress. I'm wondering how you managed to  integrate your forum and wordpress loops into one, as presented on this page: &#60;a href=&#34;http://akirakurosawa.info/forums/.&#34; rel=&#34;nofollow&#34;&#62;http://akirakurosawa.info/forums/.&#60;/a&#62; You are showing a single chronological list of recent posts and comments across both your WP blog and BBPress forum. Would you mind sharing how you did this? I'm very new to PHP so would not be able to tweak things easily to make this happen.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>AntonioP on "*seamless* wordpress integration"</title>
<link>http://bbpress.org/forums/topic/seemless-wordpress-integration/page/2#post-16452</link>
<pubDate>Sun, 25 May 2008 00:27:10 +0000</pubDate>
<dc:creator>AntonioP</dc:creator>
<guid isPermaLink="false">16452@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I am thouroughly confused on how to do this.  Where the heck would I actually start?  I don't want to integrate the the databases/cookies/etc., I just want to apply the same look of my header and footer at &#60;a href=&#34;http://www.atriskstoriesofhope.com/&#34; rel=&#34;nofollow&#34;&#62;www.atriskstoriesofhope.com/&#60;/a&#62; with &#60;a href=&#34;http://www.atriskstoriesofhope.com/bbpress...&#34; rel=&#34;nofollow&#34;&#62;www.atriskstoriesofhope.com/bbpress...&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "Restrict New Topic"</title>
<link>http://bbpress.org/forums/topic/restrict-new-topic#post-13583</link>
<pubDate>Sat, 02 Feb 2008 13:56:52 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">13583@http://bbpress.org/forums/</guid>
<description>&#60;pre&#62;&#60;code&#62;Put this code in a Plugin. The group &#38;quot;Member&#38;quot; will be affected.

function restrict_bb_got_roles() {
global $bb_roles;
unset($bb_roles-&#38;gt;roles[&#38;#39;member&#38;#39;][&#38;#39;capabilities&#38;#39;][&#38;#39;edit_topics&#38;#39;]);
unset($bb_roles-&#38;gt;roles[&#38;#39;member&#38;#39;][&#38;#39;capabilities&#38;#39;][&#38;#39;write_topics&#38;#39;]);

unset($bb_roles-&#38;gt;role_objects[&#38;#39;member&#38;#39;]-&#38;gt;capabilities[&#38;#39;edit_topics&#38;#39;]);
unset($bb_roles-&#38;gt;role_objects[&#38;#39;member&#38;#39;]-&#38;gt;capabilities[&#38;#39;write_topics&#38;#39;]);
}

add_action(&#38;#39;bb_got_roles&#38;#39;, &#38;#39;restrict_bb_got_roles&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;What happens If you use this? Do only members + higher be able to post here and all can reply and read?
&#60;/p&#62;</description>
</item>
<item>
<title>citizenkeith on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/3#post-12688</link>
<pubDate>Sun, 16 Dec 2007 23:16:02 +0000</pubDate>
<dc:creator>citizenkeith</dc:creator>
<guid isPermaLink="false">12688@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Running the latest version of bbPress and the latest version of ck's plugin.&#60;/p&#62;
&#60;p&#62;Signatures won't update when you try to change them in Edit Profile. No error messages to be found.
&#60;/p&#62;</description>
</item>
<item>
<title>djvibe on "*seamless* wordpress integration"</title>
<link>http://bbpress.org/forums/topic/seemless-wordpress-integration/page/2#post-11127</link>
<pubDate>Thu, 27 Sep 2007 05:42:35 +0000</pubDate>
<dc:creator>djvibe</dc:creator>
<guid isPermaLink="false">11127@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;After talking with the author of the tutorial I am going to create a separate CSS file that I can import into my WP CSS.. I think this is better because then it can be used as a starting point for others using the Themepress BBP Theme.. I think this should be integrated into the next release of  Themepress..
&#60;/p&#62;</description>
</item>
<item>
<title>djvibe on "*seamless* wordpress integration"</title>
<link>http://bbpress.org/forums/topic/seemless-wordpress-integration/page/2#post-11126</link>
<pubDate>Thu, 27 Sep 2007 05:23:35 +0000</pubDate>
<dc:creator>djvibe</dc:creator>
<guid isPermaLink="false">11126@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There is a really good tutorial to integrate the WP + BBP seamlessly here.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.adityanaik.com/integratepress-part-i/&#34; rel=&#34;nofollow&#34;&#62;http://www.adityanaik.com/integratepress-part-i/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It worked great for me and includes a Theme for BBP that integrates all WP functions into BBP and keeps the header and footer in tact... the only problem is that the BBP CSS is totally lost.. I am currently trying to create a Master CSS file that integrates the kakumei CSS in my WP CSS.. but my CSS skills are not exactly up to date...  Ill keep you posted on how it goes...
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/3#post-10011</link>
<pubDate>Tue, 07 Aug 2007 01:52:20 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">10011@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#38;gt; The svn doesn't seem to be updating the versions on the extend page&#60;/p&#62;
&#60;p&#62;You need to add tagged versions to bump up the version on the extend page.&#60;/p&#62;
&#60;p&#62;Just add a new sub-directory to the &#34;tags&#34; directory named the same as the version number, then copy your trunk files that match that version to it.
&#60;/p&#62;</description>
</item>
<item>
<title>Jolaedana on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/3#post-10007</link>
<pubDate>Mon, 06 Aug 2007 21:31:32 +0000</pubDate>
<dc:creator>Jolaedana</dc:creator>
<guid isPermaLink="false">10007@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm running PHP 4.4.7, and server is Linux- nothing too non standard. &#60;/p&#62;
&#60;p&#62;It seems like this new version you've done has fixed the issue- yaay. It was only occurring if I tried to post a second time in a thread I'd already posted in once with the signature. Seems to be solved.&#60;/p&#62;
&#60;p&#62;Thanks for all your great work on plugins around here lately.&#60;/p&#62;
&#60;p&#62;If I have any other bugs with this, I'll be sure to let you know.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/3#post-9963</link>
<pubDate>Sun, 05 Aug 2007 19:25:59 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9963@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Are you using php5? Server runs linux or windows?&#60;br /&#62;
The second error is caused by the first.&#60;br /&#62;
I'll if I can  do a quick fix, thanks for the report.&#60;/p&#62;
&#60;p&#62;Please try this version and see if it makes the error go away:&#60;br /&#62;
&#60;a href=&#34;http://ckon.files.wordpress.com/2007/08/bb-signatures.txt?v012a&#34; rel=&#34;nofollow&#34;&#62;http://ckon.files.wordpress.com/2007/08/bb-signatures.txt?v012a&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Jolaedana on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/3#post-9962</link>
<pubDate>Sun, 05 Aug 2007 19:09:25 +0000</pubDate>
<dc:creator>Jolaedana</dc:creator>
<guid isPermaLink="false">9962@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks for the plugin! My users will be happy. &#60;/p&#62;
&#60;p&#62;Unfortunately, I'm getting the following error: &#60;/p&#62;
&#60;p&#62;Warning: in_array() [function.in-array]: Wrong datatype for second argument in /path_to/my-plugins/bb-signatures.php on line 127&#60;/p&#62;
&#60;p&#62;Warning: Cannot modify header information - headers already sent by (output started at /path_to/my-plugins/bb-signatures.php:127) in /path_to/bb-includes/pluggable.php on line 168&#60;/p&#62;
&#60;p&#62;Any thoughts?
&#60;/p&#62;</description>
</item>
<item>
<title>ganzua on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/3#post-9960</link>
<pubDate>Sun, 05 Aug 2007 19:01:31 +0000</pubDate>
<dc:creator>ganzua</dc:creator>
<guid isPermaLink="false">9960@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#34;I doubt I will add lines/characters countdown meters anytime soon but will keep them in mind. &#34; &#60;/p&#62;
&#60;p&#62;-&#38;gt; just a suggestion, don't worry&#60;/p&#62;
&#60;p&#62;&#34;To see a signature somewhere else you'd have to call&#60;br /&#62;
echo add_signature_to_post('');&#34; &#60;/p&#62;
&#60;p&#62;-&#38;gt; I mean for example in profile.php &#60;/p&#62;
&#60;p&#62;&#34;I only worked on signatures for a day or two, it's very very beta.&#34;&#60;/p&#62;
&#60;p&#62;-&#38;gt; well, it does its job!
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/3#post-9958</link>
<pubDate>Sun, 05 Aug 2007 18:15:38 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9958@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I doubt I will add lines/characters countdown meters anytime soon but will keep them in mind. The Polls plugin is my top priority for now as I don't even allow signatures on my own sites.&#60;/p&#62;
&#60;p&#62;I'll look into the stylesheet bug though.&#60;/p&#62;
&#60;p&#62;To see a signature somewhere else you'd have to call&#60;br /&#62;
&#60;code&#62;echo add_signature_to_post(&#38;#39;&#38;#39;);&#60;/code&#62;&#60;br /&#62;
which might work but won't apply other bbpress filters to it. It also needs to know the post and user id from $bb_post so if it's outside the loop  it won't work at all.&#60;/p&#62;
&#60;p&#62;I only worked on signatures for a day or two, it's very very beta.
&#60;/p&#62;</description>
</item>
<item>
<title>ganzua on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/3#post-9951</link>
<pubDate>Sun, 05 Aug 2007 17:02:46 +0000</pubDate>
<dc:creator>ganzua</dc:creator>
<guid isPermaLink="false">9951@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There is a couple of things that could be useful but I have no idea how to implement;  a warning text displaying how many characters and lines are still available in the signature field and the possibility of moving the signature field to any other places. &#60;/p&#62;
&#60;p&#62;If I wanted to include signature in any other place is there any function I can call?
&#60;/p&#62;</description>
</item>
<item>
<title>ganzua on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/3#post-9949</link>
<pubDate>Sun, 05 Aug 2007 16:48:32 +0000</pubDate>
<dc:creator>ganzua</dc:creator>
<guid isPermaLink="false">9949@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;this style &#60;/p&#62;
&#60;p&#62;'.signature {clear:both;border-top:1px solid &#60;a href=&#34;http://trac.bbpress.org/ticket/222&#34;&#62;#222&#60;/a&#62;; font-size:85%; color:&#60;a href=&#34;http://trac.bbpress.org/ticket/777&#34;&#62;#777&#60;/a&#62;;padding:1em;}'&#60;/p&#62;
&#60;p&#62;that appears in the plugin control panel is not working for me neither unless I copy it in the stylesheet
&#60;/p&#62;</description>
</item>
<item>
<title>ganzua on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/3#post-9948</link>
<pubDate>Sun, 05 Aug 2007 16:33:07 +0000</pubDate>
<dc:creator>ganzua</dc:creator>
<guid isPermaLink="false">9948@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;and I just checked,  fieldset is stylized in the style sheet and I fixed a width in pixels there. &#60;/p&#62;
&#60;p&#62;I don't know if this is a problem with my custom theme or if anybody else  is having the same thing. What I'm going to do is to create a class &#34;forumsignature&#34; in my style sheet, I'm going to define a width in pixels there and next I'll change &#38;lt;fieldset&#38;gt; for &#38;lt;fieldset class=&#34;forumsignature&#34;&#38;gt; in the plugin.
&#60;/p&#62;</description>
</item>
<item>
<title>ganzua on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/2#post-9947</link>
<pubDate>Sun, 05 Aug 2007 16:14:18 +0000</pubDate>
<dc:creator>ganzua</dc:creator>
<guid isPermaLink="false">9947@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It doesn't work for me :)   It is widening the whole table but I think the sproblem is tag &#38;lt;fieldset&#38;gt;. Removing this tag solved the problem.
&#60;/p&#62;</description>
</item>
<item>
<title>ganzua on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/2#post-9941</link>
<pubDate>Sun, 05 Aug 2007 14:50:17 +0000</pubDate>
<dc:creator>ganzua</dc:creator>
<guid isPermaLink="false">9941@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#34;I only used a table to match what is already being used on that page by default and there may be future structures that need a table.&#34;&#60;/p&#62;
&#60;p&#62;Yep, I guessed so&#60;/p&#62;
&#60;p&#62;&#34;The svn doesn't seem to be updating the versions on the extend page here so here's a direct version:&#60;br /&#62;
&#60;a href=&#34;http://ckon.wordpress.com/files/2007/08/bb-signatures.txt?v&#34; rel=&#34;nofollow&#34;&#62;http://ckon.wordpress.com/files/2007/08/bb-signatures.txt?v&#60;/a&#62; &#34;&#60;/p&#62;
&#60;p&#62;I'm going to give it a try right now
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/2#post-9932</link>
<pubDate>Sun, 05 Aug 2007 11:43:17 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9932@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I only used a table to match what is already being used on that page by default and there may be future structures that need a table.&#60;/p&#62;
&#60;p&#62;The svn doesn't seem to be updating the versions on the extend page here so here's a direct version:&#60;br /&#62;
&#60;a href=&#34;http://ckon.wordpress.com/files/2007/08/bb-signatures.txt?v011&#34; rel=&#34;nofollow&#34;&#62;http://ckon.wordpress.com/files/2007/08/bb-signatures.txt?v011&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>ganzua on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/2#post-9930</link>
<pubDate>Sun, 05 Aug 2007 11:34:48 +0000</pubDate>
<dc:creator>ganzua</dc:creator>
<guid isPermaLink="false">9930@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#34;Do you mean inside the edit profile page?&#34;&#60;/p&#62;
&#60;p&#62;Yes, the edit profile page&#60;/p&#62;
&#60;p&#62;&#34;You'd need to reduce the &#38;lt;table width=&#34;100%&#34;&#38;gt;&#60;br /&#62;
but maybe also textarea style=&#34;width:90%;&#34; &#34;&#60;/p&#62;
&#60;p&#62;-&#38;gt; it didn't work.  &#38;lt;table width=&#34;30%&#34;&#38;gt; only reduces the form area&#60;/p&#62;
&#60;p&#62;&#34;Are you using a custom template?&#34;&#60;/p&#62;
&#60;p&#62;-&#38;gt; yes a 800 x 600 two columns, narrow column  right&#60;/p&#62;
&#60;p&#62;&#34;I am now removing width=&#34;100%&#34; from the new/next version.&#34;&#60;/p&#62;
&#60;p&#62;-&#38;gt; well, I'll wait. Does it need a table? Perhaps a div plus some css would be better.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/2#post-9915</link>
<pubDate>Sun, 05 Aug 2007 05:29:14 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9915@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Do you mean inside the edit profile page?&#60;/p&#62;
&#60;p&#62;You'd need to reduce the &#60;code&#62;&#38;lt;table width=&#38;quot;100%&#38;quot;&#38;gt;&#60;/code&#62;&#60;br /&#62;
but maybe also &#60;code&#62;textarea style=&#38;quot;width:90%;&#38;quot;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Are you using a custom template? Seems to work fine in the few templates I've tried.&#60;/p&#62;
&#60;p&#62;If you still have trouble, post a screenshot image if you can.&#60;/p&#62;
&#60;p&#62;I am now removing &#60;code&#62;width=&#38;quot;100%&#38;quot;&#60;/code&#62; from the new/next version.
&#60;/p&#62;</description>
</item>
<item>
<title>ganzua on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/2#post-9912</link>
<pubDate>Sun, 05 Aug 2007 02:14:28 +0000</pubDate>
<dc:creator>ganzua</dc:creator>
<guid isPermaLink="false">9912@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I can't reduce signature table width. Is it defined in line 83 &#38;lt;table width=&#34;100%&#34;&#38;gt;   ?  I can reduce the form but not the table where it is included.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/2#post-9863</link>
<pubDate>Fri, 03 Aug 2007 19:23:55 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9863@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Testing working in the latest 912 trunk.
&#60;/p&#62;</description>
</item>
<item>
<title>mazdakam on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/2#post-9793</link>
<pubDate>Thu, 02 Aug 2007 14:30:17 +0000</pubDate>
<dc:creator>mazdakam</dc:creator>
<guid isPermaLink="false">9793@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;it is really good thanks
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/2#post-9727</link>
<pubDate>Wed, 01 Aug 2007 16:24:14 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9727@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oh weird. I wonder why I didn't see that and thought it was after. Oh wait, I know what the problem was, I didn't like how it was after the submit button and couldn't think of a proper method to manipulate it with CSS.&#60;/p&#62;
&#60;p&#62;Oh well. After I get the polls plugin going I'll go back to signatures. Signatures I'll never use myself but I want polls...
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/2#post-9721</link>
<pubDate>Wed, 01 Aug 2007 15:31:26 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">9721@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Actually, &#60;code&#62;post_form&#60;/code&#62; is called immediately before the form is closed.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org/browser/trunk/bb-includes/template-functions.php#L163&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/browser/trunk/bb-includes/template-functions.php#L163&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/2#post-9701</link>
<pubDate>Wed, 01 Aug 2007 06:58:14 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9701@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@fel64, yeah I saw post-form but it closes the form before the action is called so any fields inserted would not be passed with the data. I'd have to do some weird javascript kung-fu to insert a field into the previous form and that's just too messy for my taste.&#60;/p&#62;
&#60;p&#62;The real solution is some kind of hook in the template loader so before and after it does the &#34;include&#34;, then it lets you insert anything you want on any template. Now that would make for super flexibility.
&#60;/p&#62;</description>
</item>
<item>
<title>citizenkeith on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/2#post-9691</link>
<pubDate>Wed, 01 Aug 2007 00:36:29 +0000</pubDate>
<dc:creator>citizenkeith</dc:creator>
<guid isPermaLink="false">9691@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Looks awesome. Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Plugin: [REL] Signature"</title>
<link>http://bbpress.org/forums/topic/plugin-rel-signature/page/2#post-9689</link>
<pubDate>Tue, 31 Jul 2007 23:05:48 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">9689@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Did you try the action 'post_form' and echoing the desired HTML?&#60;/p&#62;
&#60;p&#62;I'm not sure there's one that does the same for edit_form(), which is probably an oversight.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
