Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #502073

    Hi,

    I would like that the “Plaats een reactie” section (Translation: Place a response) to be above the section with all the responses.

    How do I do this?

    This is my website: http://portretfotograafamsterdam.online-id.nl/gastenboek/

    #502098

    Hi Mitchell!

    In the comments.php file move lines 153 – 174..

    	/* Last but not least the comment_form() wordpress function
    	 * renders the comment form as defined by wordpress itself
    	 * if you want to modify the submission form check the documentation here:
    	 * http://codex.wordpress.org/Function_Reference/comment_form
    	 */
    	 if(comments_open()){
    		
    		 
    		 echo "<div class='comment_container'>";
    		 echo "<h3 class='miniheading'>".__('Leave a Reply','avia_framework')."</h3>";
    		 echo "<span class='minitext'>".__('Want to join the discussion?','avia_framework')." <br/>".__('Feel free to contribute!','avia_framework')."</span>";
    		 comment_form();
    		 echo "</div>";
    	 }
    	 else if(get_comments_number())
    	 {
    		 /* If there are no comments and comments are closed,
    		 * let's leave a little note, shall we?
    		 */
    	 	
    	 	echo "<h3 class=' commentsclosed'>".__( 'Comments are closed.', 'avia_framework' )."</h3>";
    	 } 
    

    To just below line 70..

    <div class='comment_container'>
    

    And make sure to surround those lines with PHP tags.

    <?php
    
    ?>

    Best regards,
    Elliott

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.