bbPress Plugin Browser »

Support Forum (3.0.6)

Download

Version: 3.0.6

Other Versions

Last Updated: 2009-6-29

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
(11)

Your Rating

Authors so1o, mdawaffe, SamBauers

Tags: ,

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

    Posted: 3 years 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: 2 years 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: 2 years 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: 2 years ago #
  5. Added compatibility of Support Forum to my new upcoming plugin :-)

    Posted: 2 years 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: 2 years 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: 2 years 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: 2 years 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: 2 years 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 year ago #
  11. mr_pelle

    5 stars
    4 stars
    3 stars
    2 stars
    1 star

    Member

    Great plugin! Just a note: in the admin page, forums and sub-forums list was displaying badly (or maybe it was just to me...), so I created and embedded a little CSS file:

    1) Paste this in support-forum.php just after line 923:
    <link rel="stylesheet" href="<?=bb_get_uri('my-plugins/')?>support-forum/support-forum.css" type="text/css" />

    2) Create a new file named support-forum.css in the same folder as support-forum.php and paste this code in it:

    .alignright {
    	display: inline;
    	float: right;
    }
    .list-block {
    	list-style: circle;
    	margin-left: 10px;
    }
    .list-block-div {
    	width: 50%;
    }
    .list-block.posrel {
    	margin-left: 2px;
    }
    .submit {
    	margin-bottom: 10px;
    }

    3) Enjoy! :)

    Posted: 1 year ago #
  12. Hi,
    is it possible to get another status?
    I want to get rid of the status as soon as the topic is closed but i think it would be easier to just get another status.
    Can you help please?

    Posted: 1 year ago #
  13. Great plugin but it slows down opening of topcis significaly

    Posted: 1 year ago #

RSS feed for this topic

Add a Comment

You must log in to post.