Participants can delete single topic tags by removing them from input field
-
Hi there,
I’m trying to find a solution to the problem of participants being able to remove single topic tags by simply removing them from the “Tags” input field on the reply-to form.
I’ve found this thread that clearly explains the issue
and offers a solution that is unfortunately not working on my end.My form-reply.php currently has this line:
<?php if ( bbp_allow_topic_tags() && current_user_can( 'assign_topic_tags', bbp_get_topic_id() )) : ?>
which I tried to replace with:
<?php if ( bbp_allow_topic_tags() && current_user_can( 'assign_topic_tags', bbp_get_topic_id() ) && current_user_can('moderate') ) : ?>
to no avail.Has anyone solved this issue? Would love some guidance here! 🙂
- You must be logged in to reply to this topic.