I’m using a plugin for WordPress called WP User Frontend. Basically it allows users to post from the front-end of the website.
There is a feature which allows users to add tags themselves, however, this is just a normal input text field, and I don’t want them to create countless of new tags.
So basically what I want is for them to be able to click on several buttons which will add the tags to the input field, while also disabling their manual input.
You will need a script that converts the checkbox input into whatever format (say, a string of words separated by spaces) was needed for the original tags input. Here is an example script that would both insert the checkboxes to the page underneath the original input and put the resulting values into the original field, ensuring it gets posted the same way. (You could then hide the original field if you don’t want it displayed.) http://jsfiddle.net/zLVTp/8/