Directory and its child themes also come with an option of allowing users to submit posts to the blog. In case you have created the page that allows users to submit blog posts, and you wish to show the ‘Post’ tab on the ‘Author’ page, follow the steps below.

The tab shows next to other tabs on the theme’s ‘Author’ page as seen in the image below.

1- Connect to your site by FTP or through the file manager on your hosting cPanel.

2- Download the ‘registration_functions.php’ file.

File location:
wp-content/plugins/Tevolution/tmplconnector/monetize/templatic-registration/

3- Open the file and find the following chunk of code:

<!– <li class=”tab-title <?php echo wp_kses_post( wp_unslash( $active_tab ) );?>” ><a href=”<?php echo esc_url( $author_link );?>custom_post=post” role=”tab” tabindex=”0″><?php echo wp_kses_post( wp_unslash( $obj->labels->singular_name ) );?></a></li> –>

4- replace with the following chunk of code:

<li class=”tab-title <?php echo wp_kses_post( wp_unslash( $active_tab ) );?>” ><a href=”<?php echo esc_url( $author_link );?>custom_post=post” role=”tab” tabindex=”0″><?php echo wp_kses_post( wp_unslash( $obj->labels->singular_name ) );?></a></li>

5- Save & Close

6- Upload the modified file to the same location to replace the existing one.

Please make sure to backup the original file before making any modifications to it.