If you are unsure of where to add code, look at the current template set:
1 Open the 'journal.tpl' file:
Change:
if ($this->JOURNAL['encomms'] == 'yes') {
to:
if ($this->JOURNAL['encomms'] == 'yes' && $this->JDATA['comments_system']) {
2 In the same file:
Change:
echo $this->JDATA['disqus']
to:
echo $this->JDATA['comments_system']
3 Again, in the same file add the following AFTER the tags if statement:
if ($this->SETTINGS['jcount'] == 'yes') {
?>
<div class="text-right viewcount">
<?php echo $this->TEXT[2][12]; ?>: <?php echo $this->COUNTER; ?>
</div>
<?php
}
4 Open the 'html/journal.htm' and 'html/private-journal.htm' template files and wrap the {user} variable in 'a' tags:
<a href="{user_url}">{user}</a>
5 Open the 'footer.tpl' template file and add the following BEFORE the closing </body> tag:
<?php
echo $this->SEC_TOKEN;
?>
6 Open the 'login.tpl' template file and add the following BEFORE the last form-group class:
<?php
echo $this->CAPTCHA;
?>