Using MT 4.2.5 Pro+Community Packs
I am looking for some recipes, plugins, or sample template modules to accomplish the following:
1. For each Entry, the comment form is closed until commenter clicks "Leave Comment" link (but only the form for that Entry is opened)
2. All comments are hiddend until users click the "# of Comments" link
Will appreciate any help.
Reported on Movable Type 4.2
Write some JavaScript to close it. This jQuery example is enough to hide the form, but you'd have to modify the template with a link to invoke some JS to show the form again (.show() in jQuery).
$(window).ready(function() {
$("#comments-open").hide();
});
Thank you very much Mike.
I am not at all good at code but I will try and hack it.
Mike,
Where do you place that script?
Thanks