Opened 13 years ago
Last modified 6 years ago
#1720 new enhancement
Add resolved and not resolved option in the forms
Reported by: | alexvorn2 | Owned by: | |
---|---|---|---|
Milestone: | Future Release | Priority: | normal |
Severity: | normal | Version: | 2.0 |
Component: | General - Content Creation | Keywords: | |
Cc: | pippin@… |
Description
To built in the option to mark topics resolved or not resolved in reply and topic form.
I think this is a must feature for the plugin as most of users use bbPress for support forums.
And allow to create custom options in the form if it is not available yet - I tried to do by myself but with no result.
Change History (11)
#2
follow-up:
↓ 5
@
12 years ago
I haven't personally used this plugin, but I think it does what the OP was asking for.
http://wordpress.org/extend/plugins/bbpress-vip-support-plugin/
#3
@
11 years ago
- Cc pippin@… added
The VIP Support Forums plugin is pretty poor actually. It works fine (I use it extensively), but I've rewritten the vast majority of it. I might put it all together into a new plugin, but I do like the idea of possibly having this in core, just so long as it can be enabled/disabled.
#4
@
11 years ago
I would love to see this as well. Since the Wordpress.org BBPress has it, I was wondering why this did not make it into the core? It's extremely useful to be able to see if the thread has lead to a resolution or not, and display the post that solved the problem without having to read the whole thing.
#5
in reply to:
↑ 2
@
11 years ago
Replying to jaredatch:
I haven't personally used this plugin, but I think it does what the OP was asking for.
http://wordpress.org/extend/plugins/bbpress-vip-support-plugin/
This plugin hasn't been updated in quite a while and there is a fork with some patches on GitHub as discussed here and it also hasn't been updated in a while also and appears to have some outstanding issues also.
#6
@
10 years ago
Also using bbPress for support forums, would be really useful to get this in there.. I'm in the process of looking at ways to add this in myself...
#7
follow-up:
↓ 8
@
10 years ago
hey, I made a new plugin related to this feature:
https://wordpress.org/plugins/bbresolutions/
It still in the first stages, and I will work heavily on it..
I hope you like it :)
#8
in reply to:
↑ 7
;
follow-up:
↓ 9
@
10 years ago
Replying to alex-ye:
hey, I made a new plugin related to this feature:
https://wordpress.org/plugins/bbresolutions/
It still in the first stages, and I will work heavily on it..
I hope you like it :)
Cool, I'll take a look at this. I have also been working on creating a patch for bbPress Core for this, I have been cherry picking ideas from the four plugins listed bbPress – Support Forums and also added your plugin to the list.
#9
in reply to:
↑ 8
@
10 years ago
Replying to netweb:
Replying to alex-ye:
hey, I made a new plugin related to this feature:
https://wordpress.org/plugins/bbresolutions/
It still in the first stages, and I will work heavily on it..
I hope you like it :)
Cool, I'll take a look at this. I have also been working on creating a patch for bbPress Core for this, I have been cherry picking ideas from the four plugins listed bbPress – Support Forums and also added your plugin to the list.
Good to know! .. and Thanks for the adding :)
I had forked GetShopped plugin before several months to fix the security and performance bugs, but the fork it's not ready for the public usage because I change it a lot!
anyway.. if you decided to include this feature in the core, I will be happy to offer the help :)
#10
follow-up:
↓ 11
@
8 years ago
This is also implemented in bbPress: Topic Resolution plugin for #meta1544 now.
#11
in reply to:
↑ 10
@
6 years ago
Replying to SergeyBiryukov:
This is also implemented in bbPress: Topic Resolution plugin for #meta1544 now.
Thanks a lot for the plugin. I've been looking for a well-coded and maintained plugin to implement on my support forum. And this is exactly what I need.
In case someone is using the plugin, in order to make it the same as wordpress.org forum, you need to:
- Show lead topic in the single topic page. Doing this via:
add_filter( 'bbp_show_lead_topic', '__return_true' );
- Add some CSS. Here is what I'm using:
.resolved:before, .topic-resolved-indicator::before { display: inline-block; content: "✓"; color: #64b450; margin-right: 5px; } .bbp-breadcrumb { margin-right: 100px; } #bbpress-forums { position: relative; } .topic-resolved-indicator { background: #64b450; color: #fff; position: absolute; padding: 2px 6px; right: 0; top: 0; border-radius: 2px; font-size: 12px; font-weight: bold; } .topic-resolved-indicator::before { color: #fff; }
I would submit that this is probably more of a plugin feature. If added to core, please provide this only as an option. We use bbPress as discussion forums, not support forums, and it would spoil bbPress for us if enforced.