Resolved - Make changes to content database table *completed in June 2013 and keeping these two column additions in the Junco code.* * to hide blog reply posts from displaying on the parent blog post page, add a "hide" column. ** single character ** default value of 'n' ** when blog author hides the display of a reply, value gets changed to 'y' * to allow user to see the number of blog replies received, add column "parentauthorid." ** parentid points to the parent blog post that the reply post is pointing to. ** parentauthorid is the author of the parent blog post. ** select count(*) as replycount from content where parentauthorid= and type='b' and status='o' #junco #resolved