Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Dandy. Copy file single.php from the parent theme to your child theme.
    Find these two lines near the bottom of the file:

    <?php if ( ot_get_option( 'related-posts' ) != '1' ) { get_template_part('inc/related-posts'); } ?>
    
    <?php comments_template('/comments.php',true); ?>

    Swap them around:

    <?php comments_template('/comments.php',true); ?>
    
    <?php if ( ot_get_option( 'related-posts' ) != '1' ) { get_template_part('inc/related-posts'); } ?>
    Thread Starter DandyGomez

    (@dandygomez)

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Comments before related posts’ is closed to new replies.