Nassim Z
asked 10 years ago

Hi, I would like to put the comment section just after the post in wordpress . i’m using dw minion theme, who it’s just awesome by the way.
Thanks.

2 Answers
DominicStaff
answered 10 years ago

If you want to put the comment section just after the post, you can open the single.php file in the folder path “wp-content\themes\dw-minion” Find the line 7 to line 10.
Replace the following code:

    get_template_part( 'content', 'single' );
    if ( comments_open() ) comments_template();
    dw_minion_content_nav( 'nav-below' );
    dw_minion_related_post($post->ID);

With new code:

  get_template_part( 'content', 'single' );
     dw_minion_content_nav( 'nav-below' );
     dw_minion_related_post($post->ID);
     if ( comments_open() ) comments_template();

Regards,

Bhushan Patil
replied 10 years ago

Hi Dominc, I want to show the comment box right under the questions. that means all the questions should have comment box right under them.

DominicStaff
answered 10 years ago

  That’s no option to display the comment box as shown on the single post of DW Minion on the single question page of the DW Q&A. However, the plugin, by default, supports you to allow users to leave comment for the questions. To archive it, you go to Dashboard > Q&A > Settings > Permission and configure it out.

Powered by DW Question & Answer Pro