1. How do I show the reply form on each page of topic for the reply feature?
- Open
topic.phpfile of your theme. - Search for
post_form();(Tip: PressCtrl+Fand then search) - Replace it with
post_form( array( 'last_page_only' => false ) ); - The resulting line should look something like this -
<?php post_form( array( 'last_page_only' => false ) ); ?> - Save and Upload!