Heisenberg submitted a new resource:
You must be registered for see links
- Tags RequiredvB Version: 4.1.2
This mod, show a alert box when someone try to create a thread without adding tags.
Just search on clientscript/vbulletin_textedit.js
Code:vB_Text_Editor.prototype.prepare_submit = function(subjecttext, minchars) { var returnValue;
and below add:
Code:if (document.vbform.taglist.value == "") { alert("Tags Required please add some tags"); return false; }
That's all
You must be registered for see links
Last edited: