Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
6.4k views
in Plugins by

When I create a message - option 'prevent new users from creating new tags' works fine, but when I edit the message this option not working

Q2A version: 1.6.3

1 Answer

+1 vote
by

I solved this problem by adding a line of code in this part of the code in the file "qa-tt-layer.php":

"$(function(){\n" .

 

" $('.qa-form-tall-button-ask').on('click', qa_tag_verify);\n" .
" $('.qa-form-tall-button-save').on('click', qa_tag_verify);\n" .  // this line of code i added
"});\n" .
...