Forum Replies Created
-
I am game.
wmarcy AT stny DOT rr DOT com
In reply to: Plugin: Post count titles for bbPressGetting this error Sam:
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or ‘}’ in /home/wetworx/public_html/forums/my-plugins/post-count-titles.php on line 66
Any ideas?
In reply to: Fading HeatmapCan you give directions for your hacks?
In reply to: Announce new topics via TwitterWhoops, I was thinking of a WordPress plugin. Maybe you could modify it for bbPress?
In reply to: Announce new topics via TwitterThere is a plugin already that does this (has been for a couple of months now).
In reply to: My dream theme.PCBoard!
In reply to: Site using bbpress: purposegames.comAny chance you could show us the code for your admin stuff?
In reply to: Ghoulash.comExcellent job of integration. I love how you did it.
In reply to: Soon to come, the WP Gathering theme for bbPress..I kinda like the theme, but don’t get the attitude, unless it is some ‘lost in the internet’ translation problem I am having.
In reply to: Forums @ drum-corps.netEverything looks good to me.
I gather you are going to try to monetize your site? Any luck with that?
In reply to: previous/next thread navigationAhh, sorry for the misunderstanding, that suff is over my head.
In reply to: previous/next thread navigationThere is a page number plugin available in the Extends section.
In reply to: BOZO addition?Will do Trent, thanks!
In reply to: Plugin: Avatar UploadVariations of this:
Parse error: parse error, unexpected ‘<‘ in /home/wetworx/public_html/forums/profile-edit.php on line 117
In reply to: Plugin: Avatar UploadArggh, I think my webhost has to upgrade to php5, as I am getting errors in the
<a href="avatar-upload.php?id=<?php echo $user->ID; ?>">Upload Avatar</a>
include.In reply to: Plugin: Avatar UploadFel, want to shoot the code over to me, I would love to integrate it into my bbPress sites.
Jim Lynch came to the rescue, here is what is necessary:
This code gos into the front-page.php file:
<table id="highest">
<tr>
<th>Highest Rating</th>
<th>Rating</th>
</tr>
<?php $topics=bb_top_topics();
foreach ($topics as $topic) : ?>
<tr<?php alt_class('forum'); ?>>
<td><a href="<?php topic_link(); ?>"><?php topic_title(); ?></a>
</td>
<td class="num"><div class="rating-holder"><?php bb_rating();?>
<span class="count"><?php bb_rating_count(); ?>
</span>
</div>
</td></tr>
<?php endforeach; ?>
</table>Also very important not to forget to include “my-plugins/bb-ratings.css” in your template header file. That should look something like this:
<link rel='stylesheet' href='http://YOUR_PATH_TO_BBPRESS/my-plugins/bb-ratings.css' type='text/css' />
In reply to: like5.comVery cool to see how bbPress can be changed.
THe post scrolls off the side and there is no scroll bar to see it all.
In reply to: Template of this forum??Thanks Fel64, I wrapped your code up into a table and it dragged the recalcitrant submit button into the proper position. <lol> How come it is the little things that eat away?
In reply to: Template of this forum??Trent, Another problem I am having (If these questions are getting to be annoying just let me know, I appreciate your time).
On my site http://www.wetworx.com/forums/ the search field is to the extreme left, while the submit button is is on the extreme right, and lower by about 100 pixels.
messing with the style.css doesn’t seem to have any effect (Kind of puzzling that one).
Any hints or pointers?
Thanks!
In reply to: Installing PluginsWow, my code doesn’t really look as bad as that <s>.
In reply to: Installing PluginsThis is the code running on http://www.wetworx.com/forums/topic/28?replies=1
I edited the topic.php file and added:
<table align=”left”>
<tr>
<td>
Overall Post Rating:
</td>
<td><?php bb_rating();?></td>
</tr>
<tr>
<td>How do you rate this post?
</td>
<td><?php bb_rating_dingus(); ?></td>
</tr>
</table>
Hope that helps.
In reply to: Installing PluginsProSam,
bbRatings needs you to edit system files to include the tag code into them. Once you add these tags, it will work. I also am struggling with bbRatings, and would love to get a snippet of code that made us of the bb_top_topics() function. Anyone?
In reply to: Fix or remove bozo function before it kills bbPressYou can also alternatively get rid of it all together just by taking this line out of bb-settings.php:
require( BBPATH . BBINC . ‘bozo.php’);
&&
require( BBPATH . BBINC . ‘akismet.php’);
YMMV.
In reply to: Looking for help with bb-ratingsAny chance we can get a chunk of functioning code to implement bb_top_topics()
(the code in the first message and subsequent messages are not working for me…)
I have been playing with it for better pat of a day and no go.
Thanks!