Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
FTH Offline
BBCoder III
Posts: 124 Joined: 25 Nov 2011, 21:28
Local time: Saturday 22:51Last active: -
Post
by FTH » 04 Jan 2012, 21:36
Yeah F5 is off course the better soluce
But if you want try more functions ... just for fun
F5 reload your page
but if you want to add two buttons to go previous or next with reload... try this
Open file styles/prosilver/template/overall_footer.html
Find :
Add after :
Code: Select all
<form action="" method=post>
<p><input type=button name="bottom" value="{L_PREVIOUS}" onclick="javascript:history.go(-1)"> <input type=button name="bottom" value="{L_NEXT}" onclick="javascript:history.go(1)"></p>
</form>
For Infos :
F5 reload the page, but with Javascript you can just refresh the page (not reload, cos it's different)
doktornotor Offline
BBCoder IV
Posts: 167 Joined: 14 Sep 2011, 21:20
Local time: Saturday 22:51Last active: -
Favourite EXT: Thanks for Posts
Post
by doktornotor » 04 Jan 2012, 22:07
FTH wrote: Hi,
and if you add simply a bottom on your overall_footer ?
Pffffffft, no jQuery?
Code: Select all
<script type="text/javascript">
$(document).ready(function() {
$('#refresh-button').click(function() {
location.reload();
});
});
</script>
...
<input id="refresh-button" type="button" value="refresh" />
Support requests via PM go straight to /dev/null!
FTH Offline
BBCoder III
Posts: 124 Joined: 25 Nov 2011, 21:28
Local time: Saturday 22:51Last active: -
Post
by FTH » 04 Jan 2012, 22:20
i'm ok with you code Dok, but it's for reload the page (ok ?) but if you want just refresh a page, not realod....
and the second soluce it's an other soluce to add 2 buttons with a reload with back history under JS... it's small different.
but don't affraid i like your codes
martin123456 Offline
BBCoder VI
Posts: 765 Joined: 25 Jul 2011, 11:29
Local time: Saturday 22:51Last active: -
Favourite EXT: Ban button
Location: Down south!
Post
by martin123456 » 06 Jan 2012, 00:41
Try here
http://phpbbpoints.dyndns.org/portal.php just right click on that page.
this is stoker refresh bbcode in action
darkonia Offline
BBCoder II
Posts: 57 Joined: 23 May 2011, 17:40
Local time: Saturday 21:51Last active: -
Favourite BBCode: hs bbcode
Favourite EXT: dm video
Location: Munich
Post
by darkonia » 06 Jan 2012, 12:46
a nice bbcode with the right click, where can i find this bbcode?
Von Spielern für Spieler bietet Dir MMOG-Heaven genau das, was ein Spieler braucht. Bleibe ständig informiert, finde die neuesten MMORPGs, oder suche die frischesten News aus der Welt des Online Gamings auf
MMOG-Heaven .
martin123456 Offline
BBCoder VI
Posts: 765 Joined: 25 Jul 2011, 11:29
Local time: Saturday 22:51Last active: -
Favourite EXT: Ban button
Location: Down south!
Post
by martin123456 » 06 Jan 2012, 14:39
darkonia wrote: a nice bbcode with the right click, where can i find this bbcode?
viewtopic.php?f=2&t=165
take a good look in that section there is a no right click also.
just place this
on any page and right click will refresh there is a number of place's you can place it.