Quote:
Originally Posted by turbosatan
how do i delete the tags?
this seems to have just created hundreds and hundreds of totally nonsense tags .
the options menu item doesn't show anything in the backend either
How do i remove all the tags it has created?
|
This mod creates only tags which you approve - manually or setting quarantine time. So
you have only what you approved
Please read configuration options descriptions carefully and set mod to work as you want it to work. You can easily configure it to not create any new tags and only associate already existing with new posts. Also read mod description where you have noted which vB native options are respected by this mod
You can delete tags by Admin CP, or by SQL. In 2nd case you can use query like this (I didn't check it so do corrections yourself if there is some typo or syntax issue):
Code:
DELETE tag FROM tag INNER JOIN tag_proposition WHERE tag_proposition.status=4 and tag_proposition.tagtext=tag.tagtext
This will remove only tags which was made automatically after quarantine (status = 4). If you want to remove also propositions (will be proposed again if occurs in new posts), then execute this query:
Code:
DELETE tag, tag_proposition FROM tag INNER JOIN tag_proposition WHERE tag_proposition.status=4 and tag_proposition.tagtext=tag.tagtext
Note that it is wise to clear all tags associations after that and generate it again (see mod options). And it it even wiser to close forum for minute, clear all associations, delete automatically created tags, generate association again and turn forum on