Log in

View Full Version : [How-to] Make Your vB Template XHTML Validate Correctly


Analogpoint
09-12-2007, 10:00 PM
Have you tried validating your vBulletin-powered site with the W3C validator (http://validator.w3.org)? A standard vB installation will fail the validation with one error-- it's missing the xmlns attribute for html tag at the very beginning. You can check this by validating the vB forums (http://validator.w3.org/check?uri=www.vbulletin.com%2Fforum).

The <html> tag should look like <html xmlns="http://www.w3.org/1999/xhtml">

So until vB's default templates are changed to include the xmlns info, I needed a workaround, and I didn't want to manually edti dozens of templates.

In comes a brilliant feature that is implemented in the ACP. Expand the Styles & Templates section and click on Replacement Variable Manager.

Add a new Replacement Variable for each of your parent styles.

Search for text:
<html
Replace with text:
<html xmlns="http://www.w3.org/1999/xhtml"
This will add the xmlns attribute to the <html> tag and now your pages should validate as XHTML.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr" lang="en">Turns into

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
Happy Validating! :)

foxfirediego
10-21-2007, 03:17 PM
thanks dood!

Audentio
10-26-2007, 11:47 PM
Awesome, cheers! ;)

Animparadise
11-14-2007, 04:47 AM
realy awesome :)

Triky
12-19-2007, 10:30 AM
You can check this by validating the vB forums (http://validator.w3.org/check?uri=www.vbulletin.com%2Fforum).

With the new vB release, it should be corrected. If you check now that link, it say is Valid XHTML 1.0 Transitional.

Magnumutz
12-19-2007, 11:11 AM
I wanted to say the same thing about 2 hours ago Triky... but then i looked at the thread date and i said to myself: "Naaaaaaaaaaaah".

Triky
12-19-2007, 12:25 PM
LOL http://www.web-city.it/forum/images/smilies/asd.gif

semauae
12-21-2007, 04:37 PM
I have 2175 errors

how can I fix it ?

http://validator.w3.org/check?uri=http%3A%2F%2Fsemauae.com%2Fvb&charset=%28detect+automatically%29&doctype=Inline&group=0

Peter85
02-18-2008, 11:21 AM
The fix suggested by Analogpoint has the downside of making all templates showing up as modified.

Another fix for making vBulletin 3.6.x validate is to hack the includes/functions.php file.
Line 4628 (or somewhere around there) should read:
$stylevar['textdirection'] = 'ltr';

Replace that with
$stylevar['textdirection'] = 'ltr" xmlns="http://www.w3.org/1999/xhtml';

and you will have xmlns="http://www.w3.org/1999/xhtml'; inserted in the right place in your <html>-tag.

My suggestion for a fix is much uglier but it has the benefit that it can be undone very easily and doesnt make all your templates show up as modified.

Edit:
After doing some testing I realised that that variable is also used in some of the templates. So there will still be template edits. Hopefully not as many though.