@ 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)
Version: 3.0.4
Last Updated: 2008-5-22
Requires bbPress Version: 0.9 or higher
Compatible up to: 0.9.0.2





@ 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)
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:
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
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()) {
update: my suggested fix won't work as intended
however, this might? if ($this->posterSetable && isset($_GET['new'])) {
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.
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?
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"
I'm getting this error when I try and update my topic status (using firebug):
favoritesToggle[1 === isFav ? "removeClass" : "addClass"] is not a function
suleiman, s010 has posted a solution here:
http://bbpress.org/forums/topic/javascript-error-in-topic-jsphp-whenever-i-go-to-a-topic-page
I checked out the fix PerS, but it didn't do the trick here.
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
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
updating to the latest version of bbpress should resolve the issues I and other users were experiencing with the changing status issue.
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.
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
Okay I moved all my plugins.
The default is a grey icon. If you take out the grey icon the alt text shows.
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="['
bah. I messed up.
I just needed to delete the icon image and take out
[' . $this->resolutions[$topicStatus] . ']
on line 624
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
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?
You must log in to post.