bbPress Plugin Browser »

Post count titles for bbPress (1.0.2)

Download

Version: 1.0.2

Other Versions

Last Updated: 2008-2-9

Requires bbPress Version: 0.80 or higher

Compatible up to: 1.0 alpha build 817

Plugin Homepage »

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(1)

Your Rating

Author: Sam Bauers

Allows the administrator to specify titles for users based on their current post count.

The titles appear in next to the users posts.

Tags:

  1. Hi Sam, I am getting this error on install (Never get to activate it).

    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?

    Posted: 4 years ago #
  2. Version 1.0.1 is PHP4 compatible.

    Posted: 4 years ago #
  3. I get this message:
    Warning: array_reverse() [function.array-reverse]: The argument should be an array in /var/www/g29802/jaspertjong.nl/HTML/bbnederdraken/my-plugins/post-count-titles.php on line 131

    Any idea of what I should do?

    Posted: 4 years ago #
  4. bedbugger

    Member

    Is this plug-in being supported? I'd love to try it, but waiting to see about these errors. Thanks!

    Posted: 4 years ago #
  5. citizenkeith

    Member

    Looks nice, Sam!

    I was using the Show Post Counts plugin, but it slowed down my forum severely. This one works great! This might seem illogical, but is it possible to give us the option not to show Count Titles? All I want to display are the Post Counts. I've tried to delete all the Titles in the admin panel, but the defaults still appear.

    Posted: 3 years ago #
  6. Any possible fix for Alpha 1.0? Doesn't seem to be working. Of course this is a alpha, so it's not priority, just curious.

    Posted: 3 years ago #
  7. revilo78

    Member

    I second ghowner's comment. This looks like the plugin I've been searching for but I'm using the alpha version.

    Posted: 2 years ago #
  8. How to insert the code in the header image?

    For example:

    <center><img scr='http://mydomain.com/forum/my-plugins/post-count-titles-for-bbpress/medal/1-SMALL.gif'></center>

    Posted: 1 year ago #
  9. For some reason bb_press 1.0.2 doesn't apply the post_author_title filter when calling post_author_title_link. To remedy I added this line:

    add_filter('post_author_title_link', array($post_count_titles, 'addPostTitleToUserTitle'));

    below
    add_filter('post_author_title', array($post_count_titles, 'addPostTitleToUserTitle'));

    We're around line 233. Now it works.

    Posted: 1 year ago #
  10. I found another minor bug, the titles format doesn't work with apostrophes; it's the usual add/strip slashes problem.
    Here's the fix.
    L 137:
    $this->format =bb_get_option('post_count_titles_format');
    becomes
    $this->format = stripslashes(bb_get_option('post_count_titles_format'));

    L 279:
    $format =bb_get_option('post_count_titles_format');
    becomes
    $format = stripslashes(bb_get_option('post_count_titles_format'));

    That's it.
    Davide

    Posted: 1 year ago #

RSS feed for this topic

Add a Comment

You must log in to post.