Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author finnj

    (@finnj)

    If you mean, use frontier post to edit comment, the answer is no (sorry)

    Thread Starter adrianlittee

    (@adrianlittee)

    No I mean the section where it asks whether the publisher if they want people to be able to comment or not.

    Thread Starter adrianlittee

    (@adrianlittee)

    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,

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Discussion on frontend’ is closed to new replies.