Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author malvouz

    (@malvouz)

    Hi 1ns1de, that is a bug and thanks for asking. I had fix that. Now, you could comment on that page.

    How to fix:
    Open page.php and find this code:

    <p class="meta-date">
    	<?php comments_popup_link( __( 'Leave a comment', 'baris' ), __( '1 comment', 'baris' ), __( '% comments', 'baris' ) ); ?>
    	<?php edit_post_link( __( 'Edit &rarr;', 'baris' ), '<span class="separator">|</span>', '' ); ?>
    	</p>

    add
    <?php comments_template( '', true ); ?>

    below that code and the result:

    <p class="meta-date">
    	<?php comments_popup_link( __( 'Leave a comment', 'baris' ), __( '1 comment', 'baris' ), __( '% comments', 'baris' ) ); ?>
    	<?php edit_post_link( __( 'Edit &rarr;', 'baris' ), '<span class="separator">|</span>', '' ); ?>
    	</p>
    	<?php comments_template( '', true ); ?>

    If you like, please mark this question as solved.

    Cheers,
    Malvouz

    Thread Starter ins1de

    (@ins1de)

    Thnx man!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘I can not add a comment on page’ is closed to new replies.