open:
/styles/prosilver/template/overall_header.html
find:
Code: Select all
</head>
Code: Select all
<!-- IF not S_IS_BOT -->
<!-- IF SCRIPT_NAME == 'index' --><meta http-equiv="refresh" content="5"/><!-- ENDIF -->
<!-- ENDIF -->
Code: Select all
</head>
Code: Select all
<!-- IF not S_IS_BOT -->
<!-- IF SCRIPT_NAME == 'index' --><meta http-equiv="refresh" content="5"/><!-- ENDIF -->
<!-- ENDIF -->
overall_header.html
itself, and before the closing </head>
tag. To limit that to index page, you need to wrap that between <!-- IF SCRIPT_NAME == 'index' --><!-- ENDIF -->
styles/prosilver/overall_footer.html
Code: Select all
<div class="copyright">Powered by <a href="http://www.phpbb.com/">phpBB</a>® Forum Software © phpBB Group
<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
<!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF -->
<!-- IF U_ACP --><br /><strong><a href="{U_ACP}">{L_ACP}</a></strong><!-- ENDIF -->
</div>
Code: Select all
<div class="copyright">
<form action="" method=post>
<p><input type=button name="bottom" value="{L_REFRESH}" onclick='parent.location="javascript:location.reload()"'>
</form></p>
Powered by <a href="http://www.phpbb.com/">phpBB</a>® Forum Software © phpBB Group
<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
<!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF -->
<!-- IF U_ACP --><br /><strong><a href="{U_ACP}">{L_ACP}</a></strong><!-- ENDIF -->
</div>
language/en/common.php
Code: Select all
'REDIRECTS' => 'Total redirects',
Code: Select all
'REFRESH' => 'Refresh',
And if you cant be assed to lift a finger click refresh in the browser lolSolidjeuh wrote:F5 ?