Plugin Author
finnj
(@finnj)
If you mean, use frontier post to edit comment, the answer is no (sorry)
No I mean the section where it asks whether the publisher if they want people to be able to comment or not.
added this to frontier_form.php on line 230
<td>
<?php _e("Comment Status", "frontier-post"); ?>:
<select id="comment_status" name="comment_status">
<option value="open">Allow Comments</option>
<option value="closed">Closed Comments</option>
</select>
</td>
added this to frontier-post.php on line 63
if(isset($_POST['comment_status']))
$comment_status = $_POST['comment_status'];
else
$comment_status = 'open';
added this to frontier-post.php on line 116
'comment_status' => $comment_status,