Log in

View Full Version : BB Code Enhancements - how to detect members browser


hazem_aliraqi
09-08-2012, 10:00 PM
Hello everyone

This is my first threads here

you can use this code for detecting members browser

for example

https://vborg.vbsupport.ru/attachment.php?attachmentid=141115&d=1347220838



https://vborg.vbsupport.ru/attachment.php?attachmentid=141116&d=1347220838



https://vborg.vbsupport.ru/attachment.php?attachmentid=141117&d=1347220838
you can add this code like a Notice



<div style="border-style: solid; border-width: 1px; padding-left: 4px; padding-right: 4px; padding-top: 1px; padding-bottom: 1px">
<p align="center"><b><font size="4" face="Arial">Hello {musername}
<script>

var nVer = navigator.appVersion;
var nAgt = navigator.userAgent;
var browserName = navigator.appName;
var fullVersion = ''+parseFloat(navigator.appVersion);
var majorVersion = parseInt(navigator.appVersion,10);
var nameOffset,verOffset,ix;

// In Opera, the true version is after "Opera" or after "Version"
if ((verOffset=nAgt.indexOf("Opera"))!=-1) {
browserName = "Opera";
fullVersion = nAgt.substring(verOffset+6);
if ((verOffset=nAgt.indexOf("Version"))!=-1)
fullVersion = nAgt.substring(verOffset+8);
}
// In MSIE, the true version is after "MSIE" in userAgent
else if ((verOffset=nAgt.indexOf("MSIE"))!=-1) {
browserName = "Microsoft Internet Explorer";
fullVersion = nAgt.substring(verOffset+5);
}
// In Chrome, the true version is after "Chrome"
else if ((verOffset=nAgt.indexOf("Chrome"))!=-1) {
browserName = "Chrome";
fullVersion = nAgt.substring(verOffset+7);
}
// In Safari, the true version is after "Safari" or after "Version"
else if ((verOffset=nAgt.indexOf("Safari"))!=-1) {
browserName = "Safari";
fullVersion = nAgt.substring(verOffset+7);
if ((verOffset=nAgt.indexOf("Version"))!=-1)
fullVersion = nAgt.substring(verOffset+8);
}
// In Firefox, the true version is after "Firefox"
else if ((verOffset=nAgt.indexOf("Firefox"))!=-1) {
browserName = "Firefox";
fullVersion = nAgt.substring(verOffset+8);
}
// In most other browsers, "name/version" is at the end of userAgent
else if ( (nameOffset=nAgt.lastIndexOf(' ')+1) <
(verOffset=nAgt.lastIndexOf('/')) )
{
browserName = nAgt.substring(nameOffset,verOffset);
fullVersion = nAgt.substring(verOffset+1);
if (browserName.toLowerCase()==browserName.toUpperCas e()) {
browserName = navigator.appName;
}
}
// trim the fullVersion string at semicolon/space if present
if ((ix=fullVersion.indexOf(";"))!=-1)
fullVersion=fullVersion.substring(0,ix);
if ((ix=fullVersion.indexOf(" "))!=-1)
fullVersion=fullVersion.substring(0,ix);

majorVersion = parseInt(''+fullVersion,10);
if (isNaN(majorVersion)) {
fullVersion = ''+parseFloat(navigator.appVersion);
majorVersion = parseInt(navigator.appVersion,10);
}

document.write(''
+' Your browser is ( '+browserName+' ) version ('+fullVersion+' ) <br>'
)</script>


</font></b></div>



That's all

Enjoy :D

faisaly.com
09-09-2012, 11:59 PM
Added it under navbar.... {musername} not working I just took it out of the code and edited the message a little... other then that this is a nice and simple little code....

djbaxter
09-10-2012, 12:02 AM
Would be better as an addition to postbit...

What did you substitute for {musername}, faisaly?

faisaly.com
09-10-2012, 12:51 AM
Nothing lol, I have moved to header also... and looks fantastic! just wish the {musername} was working for me...

https://vborg.vbsupport.ru/attachment.php?attachmentid=141123&stc=1&d=1347241856

Scanu
09-10-2012, 08:41 AM
Try {vb:raw musername} or {vb:raw username}

hazem_aliraqi
09-10-2012, 12:56 PM
Sorry . I designed the code for Notice

If you would like to add a name in header Template Use this

{vb:raw bbuserinfo.username}

Or this to display color of User Name

{vb:raw bbuserinfo.musername}

faisaly.com
09-10-2012, 02:28 PM
awesome thanks to both of you!

https://vborg.vbsupport.ru/attachment.php?attachmentid=141133&stc=1&d=1347290849

hazem_aliraqi
09-10-2012, 09:28 PM
you welcome :)

ForceHSS
09-10-2012, 10:41 PM
where abouts in the header do i put this so it shows like in post 7 and also only to registered users that means all groups that are registered

faisaly.com
09-11-2012, 03:29 AM
I have this set to show on the right side of the header under login and remember me...

Go to header add under at the bottom:

</div>
<div class="ad_global_header">
{vb:raw ad_location.global_header1}
{vb:raw ad_location.global_header2}
</div>
<hr />
</div>

With this edited code:

<p align="right"><b><font size="2" face="Arial"><font color="white"> Hello, {vb:raw bbuserinfo.musername}
<script>

var nVer = navigator.appVersion;
var nAgt = navigator.userAgent;
var browserName = navigator.appName;
var fullVersion = ''+parseFloat(navigator.appVersion);
var majorVersion = parseInt(navigator.appVersion,10);
var nameOffset,verOffset,ix;

// In Opera, the true version is after "Opera" or after "Version"
if ((verOffset=nAgt.indexOf("Opera"))!=-1) {
browserName = "Opera";
fullVersion = nAgt.substring(verOffset+6);
if ((verOffset=nAgt.indexOf("Version"))!=-1)
fullVersion = nAgt.substring(verOffset+8);
}
// In MSIE, the true version is after "MSIE" in userAgent
else if ((verOffset=nAgt.indexOf("MSIE"))!=-1) {
browserName = "Microsoft Internet Explorer";
fullVersion = nAgt.substring(verOffset+5);
}
// In Chrome, the true version is after "Chrome"
else if ((verOffset=nAgt.indexOf("Chrome"))!=-1) {
browserName = "Chrome";
fullVersion = nAgt.substring(verOffset+7);
}
// In Safari, the true version is after "Safari" or after "Version"
else if ((verOffset=nAgt.indexOf("Safari"))!=-1) {
browserName = "Safari";
fullVersion = nAgt.substring(verOffset+7);
if ((verOffset=nAgt.indexOf("Version"))!=-1)
fullVersion = nAgt.substring(verOffset+8);
}
// In Firefox, the true version is after "Firefox"
else if ((verOffset=nAgt.indexOf("Firefox"))!=-1) {
browserName = "Firefox";
fullVersion = nAgt.substring(verOffset+8);
}
// In most other browsers, "name/version" is at the end of userAgent
else if ( (nameOffset=nAgt.lastIndexOf(' ')+1) <
(verOffset=nAgt.lastIndexOf('/')) )
{
browserName = nAgt.substring(nameOffset,verOffset);
fullVersion = nAgt.substring(verOffset+1);
if (browserName.toLowerCase()==browserName.toUpperCas e()) {
browserName = navigator.appName;
}
}
// trim the fullVersion string at semicolon/space if present
if ((ix=fullVersion.indexOf(";"))!=-1)
fullVersion=fullVersion.substring(0,ix);
if ((ix=fullVersion.indexOf(" "))!=-1)
fullVersion=fullVersion.substring(0,ix);

majorVersion = parseInt(''+fullVersion,10);
if (isNaN(majorVersion)) {
fullVersion = ''+parseFloat(navigator.appVersion);
majorVersion = parseInt(navigator.appVersion,10);
}

document.write(''
+' Your Using ('+browserName+') Version ('+fullVersion+') <br>'
)</script>


</color></font></b></div>

Add <br> if you need to adjust, beecause not all styles are the same and logos are not all the same size...


Credits to hazem_aliraq for sharing...

ForceHSS
09-11-2012, 04:08 AM
had it that way only in the center I just changed the colour of the whole thing to blend in better to the skin colour only thing i need to work out is guests to not see it

Alecsmith
09-11-2012, 05:17 AM
It look awesome :)

Just small question is it possible change Unregistered word to Guest?

If member isn't login he see this message
Hello, Unregistered Your Using (Chrome) Version (23.0.1243.2)

pete_brady
09-11-2012, 06:27 AM
should be "You are using" or "You're using..."

Scanu
09-11-2012, 08:28 AM
It look awesome :)

Just small question is it possible change Unregistered word to Guest?

If member isn't login he see this message

It's a vbulletin phrase, btw i suggest you to show it just to the members

Alecsmith
09-11-2012, 03:03 PM
It's a vbulletin phrase, btw i suggest you to show it just to the members

okay thanks :) will check

ForceHSS
09-11-2012, 04:29 PM
It's a vbulletin phrase, btw i suggest you to show it just to the members

No way to do that as the coder never put it in the code one of the reasons why I removed it

Scanu
09-11-2012, 04:33 PM
Simply wrap the code with a condition


<vb:if condition="!$show['guest']">
code of the modification
</vb:if>

faisaly.com
09-12-2012, 04:07 PM
Awesome works great! added the wrap so guests can't view TY Scanu

Stratis
03-19-2016, 08:45 PM
Any update code for this mod? Thanks

Firefox: is ok
Chrome: is ok
IE 11: Your browser is ( Microsoft Internet Explorer ) version (9.0 ) Problem
Edge: Your browser is ( Chrome ) version (46.0.2486.0 ) Problem

Edit: Uninstalled, waiting for update, thanks