bbPress

Simple, Fast, Elegant

bbPress plugin browser »

Support Forum (3.0.4)

Download

Version: 3.0.4

Other Versions

Last Updated: 2008-5-22

Requires bbPress Version: 0.9 or higher

Compatible up to: 0.9.0.2

Author Homepage »

Plugin Homepage »

Average Rating

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

Your Rating

Authors so1o, mdawaffe, SamBauers

Tags: ,

  1. @ WPITn2shape

    I think your problem may have been a problem with the plugin and the last release of bbPress (0.8.2.1), try the new release (0.8.3) with the latest release of this plugin (2.3.2)

    Posted: 9 months ago #
  2. Thanks for an excellent plugin :D

    I had no trouble setting it up, but I am however having trouble with creating my own translation. I've included the gettext strings in the global language file, and all seems to be correctly set up, but it does not actually work.

    As you can see at the bottom of this page:

    http://support.sier.no/

    It says as follows:

    # Supportemner som er resolved
    # Supportemner som er not resolved
    # Supportemner som er not a support question

    Obviously this list of views is a mix of norwegian first and then english. Any ideas on how to fix this? As I said I've updated the translationfile for norwegian, so as far as I know it should work.

    Stian

    Posted: 9 months ago #
  3. Correct me if I am wrong but there is a javascript bug?
    "watched has no properties"

    Is this caused by the fact that watched is checked on the front page (and tags) when it should only be checked on the actual topic page?

    ie.
    if ($this->posterSetable && (is_front() || is_tag())) {

    (untested and just a guess until I have more time)

    should be

    if ($this->posterSetable && is_topic()) {

    Posted: 8 months ago #
  4. update: my suggested fix won't work as intended
    however, this might? if ($this->posterSetable && isset($_GET['new'])) {

    Posted: 8 months ago #
  5. Hey Sam,
    for reasons unclear to me,

    str_replace(BBPATH, '', dirname(__FILE__))

    would not properly return the name of the plugins folder (but instead the entire path to it). Replacing it with

    str_replace(BBPATH, '', BBPLUGINDIR)

    makes it work (since BBPLUGINDIR is created by BBPATH . 'my-plugins/' originally).
    In general, though, both methods would fail if the plugin directory isn't a subdirectory of bbpress (which it needn't be, AFAIK?).
    If you want some server details, just mention it.

    Posted: 7 months ago #
  6. I wrote a plugin for bbPress which uses AJAX based on jQuery 1.2.1.

    My plugin loads and works well, but it stops that part of Support Forum plugin which uses AJAX, e.g. when I want to change the status of a topic it does not function properly.

    I am not a JavaScript developer, I am a PHP developer. All I know is how to work with jQuery.

    Any idea?

    Posted: 5 months ago #
  7. Sam, the code you added for
    add_action('bb_head', array(&$support_forum, 'AJAX_setTopicStatus'));
    should check to see if the form is going to be on the page (ie. it's poster settable and it's the poster viewing || it's mod/admin)

    otherwise javascript errors are thrown if a visitor is not logged in, etc.

    This is similar to the issue I posted above with "watched"

    Posted: 5 months ago #
  8. I'm getting this error when I try and update my topic status (using firebug):

    favoritesToggle[1 === isFav ? "removeClass" : "addClass"] is not a function

    Posted: 3 months ago #
  9. suleiman, s010 has posted a solution here:

    http://bbpress.org/forums/topic/javascript-error-in-topic-jsphp-whenever-i-go-to-a-topic-page

    Posted: 2 months ago #
  10. I checked out the fix PerS, but it didn't do the trick here.

    Posted: 2 months ago #
  11. Hi,

    I've just installed version 3.0 with bbpress 0.9.0.1 and am having the trouble a couple of others had....I seem unable to change the status of any post/topic.

    I try selecting resolved, etc. I get no errors, but nothing changes.

    Was this ever fixed? If you need more info from me just shout....you can see my forum at http://blogitty.com/forums if you want to try it out

    Thanks, Russ

    Posted: 2 months ago #
  12. Small update...I can set the status when posting.....I just can't change the status once it's posted

    I can however lock a topic

    Russ

    Posted: 2 months ago #
  13. updating to the latest version of bbpress should resolve the issues I and other users were experiencing with the changing status issue.

    Posted: 2 months ago #
  14. gerikg

    Member

    Issues:

    1. In the options "Choose which statuses will have a view:" I want NONE to show but it won't let me.

    2. $this->iconURI is pointing to /my-plugins/ which I don't have.

    3. Is there a way to have "not a support question" show nothing, no icon or alt text.

    Posted: 2 months ago #
  15. gerikg, you keep mentioning not having my-plugins - you need to stop using bb-plugins and move everything but "akismet" and "bozo" to my-plugins (which you need to make at the same level as bb-plugins).

    I could have sworn that "not a support question" didn't have any icon by default? hmm

    Posted: 2 months ago #
  16. gerikg

    Member

    Okay I moved all my plugins.

    The default is a grey icon. If you take out the grey icon the alt text shows.

    Posted: 2 months ago #
  17. gerikg

    Member

    I'm going to try to rename or delete the image.
    take out or put // on line 208 'mu' => __('not a support question')
    'mu' => __('not a support question')
    remove all the [] from alt="['

    Posted: 2 months ago #
  18. gerikg

    Member

    bah. I messed up.

    I just needed to delete the icon image and take out
    [' . $this->resolutions[$topicStatus] . ']
    on line 624

    Posted: 2 months ago #
  19. Worked perfectly right away. Had to move the image files up from the plugin subdirectory I had used - but other than that perfect.

    Thanks
    Torben Brams

    Posted: 1 month ago #
  20. hi,

    I try to make a topic sticky on on front and get this error displayed on the front page above the topic title:

    Warning: sprintf() [function.sprintf]: Too few arguments in /home/myusername/my.url.org/my-plugins/support-forum/support-forum.php on line 680

    Any clues?

    Posted: 1 month ago #

RSS feed for this topic

Add a Comment »

You must log in to post.

Code is Poetry.