bbPress

Simple, fast, elegant

bbPress Plugin Browser »

Support Forum (3.0.6)

Download

Version: 3.0.6

Other Versions

Last Updated: 2008-11-20

Requires bbPress Version: 0.9 or higher

Compatible up to: 1.0

Author Homepage »

Plugin Homepage »

Average Rating

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

Your Rating

Authors so1o, mdawaffe, SamBauers

Tags: ,

  1. _ck_

    Moderator

    Just don't use 1.0a6
    You are not supposed to use alphas on live sites unless you know how to fix things.

    Posted: 1 year ago #
  2. gabriel403

    Member

    Hi there, I'm trying to use this with version 0.9.0.4, is there any plans on making this plugin compatible upto this version too?

    Posted: 11 months ago #
  3. the plugin work without problem with the latest rc-3 but the localization don't work, i've the file supportforum-it_IT.po and mo in languages folder bbpress in italian but the plugin don't have the same language and is in english, any idea about this problem?

    i've this plugins with 0.9.x and works ok, the problem is for the change of bbpress language folder?

    thanks!

    Posted: 9 months ago #
  4. As CK mentioned I have changed the: path of the support-forum.php at line 227 and now the icons are displaying : Thanks CK for the fix.

    $this->iconURI = bb_get_option('uri').trim(str_replace(array(trim(BBPATH,"/\\"),"\\"),array("","/"),dirname(__FILE__)),' /\\').'/images/';

    Cheers,
    -Vikram.

    Posted: 8 months ago #
  5. Added compatibility of Support Forum to my new upcoming plugin :-)

    Posted: 8 months ago #
  6. One minor thing i found to be missing that i assumed was default behaviour, that may be an oversight or error...

    Default code (can't tell you which line, i've removed alot of white-space from the copy i keep)..

    if (is_forum() || is_front() || is_view()) {
    		if ($support_forum->icons['closed']) {
    			remove_filter('bb_topic_labels', 'bb_closed_label', 10);
    			add_filter('bb_topic_labels', array(&$support_forum, 'modifyTopicLabelClosed'), 20);
    		}

    With the above the post status is not displayed next to a topic title when viewing the topic (ie:topic.php).
    Small adjustment to the above...
    if (is_forum() || is_front() || is_view() || is_topic) {

    Status is now shown next to titles on the topic view...

    NOTE: I may be guilty of not reading the full thread so apologies if this has been discussed already, just wanted to post something helpful incase anyone else was in the same dilema....

    Posted: 8 months ago #
  7. bbhack

    Member

    I was just looking at the code for this plugin and it looks like it is NOT compatible with bbPress 1.0 despite the "Compatible up to: 1.0" listed next to the plugin.

    It looks like it is using the old bb_topicmeta from 0.9 which doesn't exist anymore.

    Or did I miss something?

    Posted: 6 months ago #
  8. To make the look of "Latest Discussions" a bit more uncluttered - to get rid of a blank button in case of 'mu' - I've changed

    if ( $this->icons['status'] ) {

    to

    if ( ($this->icons['status']) && ($topicStatus != 'mu') ) {

    Function to locate in file:

    function modifyTopicLabelStatus($label)
            {
                    $topicStatus = $this->getTopicStatus();
    
                    if ($topicStatus) {
                            if ( ($this->icons['status']) && ($topicStatus != 'mu') ) {
                                    $status_image = '<img src="' . $this->iconURI . 'support-forum-' . $topicStatus . '.png" alt="[' . $this->resolutions[$topicStatus] . ']" title="[' . $this->resolutions[$topicStatus] . ']" style="vertical-align:top; margin-right:0.3em; width:14px; height:14px; border-width:0;" />';
                            } elseif ($topicStatus != 'mu') {
                                    $status_image = '[' . $this->resolutions[$topicStatus] . '] ';
                            }
                            $label = $status_image . $label;
                    }
    
                    return $label;
            }

    More changes required still, to clean up Topic View as well ...

    Posted: 5 months ago #
  9. ZoiX

    Member

    Hi all!
    I have a simple question: I have a .mo in Spanish inside language folder (I have only this file), but everything still in English, must I change something?
    In bb-config.php file the language by default is Spanish.

    Posted: 5 months ago #
  10. The package already contains pt_BR po and mo, but where [or how] we can activate in our language??
    Tks in advance

    Posted: 1 week ago #

RSS feed for this topic

Add a Comment

You must log in to post.

Code is Poetry.