Hey
I'm writing a custom comment system plugin that will allow user authentication through several Oauth providers. I't current prototype which is embedded to my theme works perfectly. I'm now trying to move it to a separate plugin, but I can't get comments_template() replaced.
function k_comments_template($comment_template) {
return "I't works!";
}
add_filter('comments_template', 'k_comments_template');
Any ideas?