I paid for a phpbb template plus a number of others from Rochettheme a little while back.
I would like the template to have post notifications automatically selected when a user makes a post.
I have found how to do it with the standard phpbb templates but unsure which file I have to edit for the Rockettheme ones.
Im using the mix mag phpbb template. I cannot access the other forums now so any help would be much appreciated.
For the standard prosilver and prosilver-based styles, you would OPEN styles/*/template/posting_editor.html.
FIND:
Code: Select all
<!-- IF S_NOTIFY_ALLOWED -->
<div><label for="notify"><input type="checkbox" name="notify" id="notify"{S_NOTIFY_CHECKED} /> {L_NOTIFY_REPLY}</label></div>
<!-- ENDIF -->
REPLACE WITH:
Code: Select all
<!-- IF S_NOTIFY_ALLOWED -->
<div><label for="notify"><input type="checkbox" checked="checked" name="notify" id="notify"{S_NOTIFY_CHECKED} /> {L_NOTIFY_REPLY}</label></div>
<!-- ENDIF -->