I added this to my site's site template to let visitors know how to comment on blog posts.
<script language="JavaScript">
if(location == 'http://sitename.infogami.com/blog/') {
document.write('<p style="font-size:smaller;color:gray;">'+
'To comment on a blog entry, click the # underneath it. '+
'You must be registered and logged in to comment.</p>');
}
</script>
I allowed commenting on my /blog by setting the permissions at /_admin/blog/ to allow comments for everyone.
To have a link under each post on my blog index page I added this line on my page template in the .dateline paragraph:
$if theycan('comment', this): <a accesskey="c" href="/$url">comment</a>
This link is a bit redundant when you're on the permalinked page, and I'm not sure about the accesskey, but hey, it's a start :)
-- Paul
last updated 1 year ago
#
history