Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
view Resolved/Unresolved all members; members can Rsolve their own topics
jackmaessen
✭✭✭
Hello members,
I was wondering if it is possible in this plugin that all members can view if discussions are resolved or unresolved.
And if it is possible that members can edit their own discussions as "Resolved".
At this moment there is only an option to manage in the permission the control of it. If for members not enabled, they can not see if topics are resolved. If enabled, they can control of all the topics.
Tagged:
0
Comments
part one.
as for the other you would need to check SessionID vs Discussion InsertUserID.
if no one helps with the other or linc doesn't add your feature request, and you want to pm to do it for you for hire, let me know.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
That's the plugin managing our internal support queue at the moment so I'm not inclined to take feature requests for it, no, sorry.
thank you @peregrine; this was very helpful.
I made some other changes in the meta tag of the topics, you can also see in there wether a topic is solved or not:
/** * Show Unresolved meta tag. */ public function Base_BeforeDiscussionMeta_Handler($Sender, $Args) { $Resolved = GetValue('Resolved', GetValue('Discussion', $Args)); // DISABLED if (CheckPermission('Plugins.Resolved.Manage') && !$Resolved) { if (!$Resolved) { echo ' <span class="Tag Tag-Unresolved">'.T('Unresolved').'</span> '; } elseif ($Resolved) { echo ' <span class="Tag Tag-Resolved">'.T('✔ Resolved').'</span> '; // added } }
and
`
http://forum.webprofis.nl/ ("✔ Opgelost" = Resolved and "Actueel..." = Unresolved)
glad it got you on your way, in what you want to achieve.
since you seem to have tried various plugins - you might want to add here what you like... trying to get some people to post so others who are not aware of certain plugins get some ideas, and developers get some kudos.
http://vanillaforums.org/discussion/28401/vanilla-awards-for-best-community-developed-plugin-theme-and-application
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
I finally find the way for staff and topic starter to mark discussions as Resolved:
and don't forget:
Personal addition: