View Full Version : Show Thread Enhancements - Auto refresh from guest or usergroup or all member!
Limode
08-22-2009, 10:00 PM
Here is auto refresh from guest using meta tag,
Browser supported : IE, FF, Opera
In template where you want refresh find :
From all :
<head>
After add :
<meta http-equiv="refresh" content="xs" />
From Guest only :
<head>
After add :
<if condition="$show['guest']">
<!-- guest auto refresh -->
<meta http-equiv="refresh" content="xs" />
<!-- / guest auto refresh -->
</if>
From a usergroup :
<head>
After add :
<if condition="$post['usergroupid'] == x"></if>
<!-- auto refresh -->
<meta http-equiv="refresh" content="xs" />
<!-- / auto refresh -->
</if>
From a member :
<head>
After add :
<if condition="$bbuserinfo['userid'] == x">
<!-- auto refresh -->
<meta http-equiv="refresh" content="xs" />
<!-- / auto refresh -->
</if>
Note :
x : id
xs : seconds
PaylaX
08-23-2009, 05:21 PM
thanks for codes, but these codes not valid XHTML,
<meta http-equiv="refresh" content="xs" />Please update first post, thanks again:up:
Limode
08-23-2009, 06:02 PM
thanks for codes, but these codes not valid XHTML,
<meta http-equiv="refresh" content="xs" />Please update first post, thanks again:up:
Thanks PaylaX,
Have a meta tag valid XHTML ? Look at verify meta tag by google webmaster tools :
1 Error, 3 warning(s) :)
multiplex
08-25-2009, 05:34 PM
what does this mod do? please explain or provide an example of what a user can expect
PaylaX
08-29-2009, 12:42 PM
what does this mod do? please explain or provide an example of what a user can expect
I think its clear, "auto refresh" is benefit to refresh the current page of any x time.
For example; you may put the codes in forumhome template's, so , the forumhome page is refresh after the x second without need your click any button or f5.
multiplex
08-29-2009, 05:26 PM
i c now. kinda of like how whose online page refreshes automatically
ok thanks
maxc0der
03-31-2011, 08:12 AM
If you need it for vBulletin 4:
<vb:if condition="$show['guest']">
<!-- guest auto refresh -->
<meta http-equiv="refresh" content="180" />
<!-- / guest auto refresh -->
</vb:if>
benative
07-22-2011, 01:03 AM
can I just make it refresh once??? not looping (over and over)??
furnival
08-02-2011, 08:06 AM
How do I enable this for multiple user groups in one <if> statement please?
BirdOPrey5
08-03-2011, 09:09 AM
How do I enable this for multiple user groups in one <if> statement please?
The code given for one usergroup is:
<if condition="$post['usergroupid'] == x"></if>
<!-- auto refresh -->
<meta http-equiv="refresh" content="xs" />
<!-- / auto refresh -->
</if>
But that is wrong- $post['usergroupid'] is only valid in posts- the correct variable I believe the author meant is: $bbuserinfo['usergroupid']
And for multiple usergroups:
<if condition="is_member_of($bbuserinfo, x, y, z)"></if>
<!-- auto refresh -->
<meta http-equiv="refresh" content="xs" />
<!-- / auto refresh -->
</if>
Where x, y, and z and usergroupids... you can add more with additional commas.
SoniaTel
12-27-2012, 11:12 AM
Great
thank u
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.