![]() |
append after <head> in all templates?
This turned out to be a global replace that is very handy if you know how to use it, you can find the solution begining in post 18(for vb4) and 20 (for vb3)
So I know if I was going to add something after <head> to one template I could do it something like: Code:
$find = '<head>'; Tried this and a few other combinations with no luck: Code:
$find = '<head>'; |
Why not just add it with a template hook. There are a couple in head or its sub templates.
|
because im trying to change <head> to lol, just learning experiance
|
What exactly are you trying to add to <head>? Maybe there's another way to do it instead of replacing it.
|
If I recall correctly, what I have done in vB 3.8.9 to add something to pages is append it to either $spacer_open or $spacer_close. :)
|
Quote:
this is just an example not what I'm doing, but say I wanted to replace Code:
<head> Code:
<head class="someClass"> so its looking like if I want to do something like this I'll have to create a replace for every template Code:
$find = '<head>'; |
What do you get by adding CSS to the head element?
|
that is not what im doing was just an example lol
|
If it really turns out to be difficult to do this, you can write some native JavaScript to do this.
http://stackoverflow.com/questions/2...o-the-head-tag |
the end result will actually be for spiders, and i dont believe spiders see execute js
--------------- Added [DATE]1460644385[/DATE] at [TIME]1460644385[/TIME] --------------- why does this method not work? Code:
<head> = str_replace('head', 'head class="test"', <head>); |
Quote:
|
hmmm, im no good with preg replaces, but shouldn't something like this work, on either global or parse templates.
this is not working Code:
$find = preg_replace("/<head[^>]>/i", "TEST", $find); |
Quote:
|
What exactly are you trying to do because the head tag does not take any attributes, so there's literally nothing you can change with the actual tag itself. The contents can be changed but as I said that's easily accomplished with template hooks.
|
im trying to do something along the lines of (again not the code I'm actually using)
HTML Code:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> so in the end i can replace a tag across multiple templates. so think of it this way since instead of head, everything on here says body. i want to add an onload event to all body tags, in every template, without having to say every template. so we do something like this for every template there is a body tag: Code:
$find = '<body>'; this would be an example of it, but this doesnt work: Code:
$find = '<body>'; |
What I would do to add an onload event to the body element on all pages is in a plugin hooked to "parse_templates" with the following:
PHP Code:
|
mark thanks for always being around to help, but I feel like I'm wasting your time =/
I was only throwing another example to what could be achieved with the end result I'm looking for. so lets look at what I'm intending on doing: In every template that has a <html> tag, i want to add some attributes. so lets say for just a one attribute example this is exactly what i want to do. across every single template: Code:
$find = '<html>'; but the end result should be something like this if it's achievable. instead of doing: Code:
$find = '<html>'; |
This works on my vB 4.2.x dev site...a plugin hooked at "parse_templates":
PHP Code:
|
causes everything to go white with no page source lol
|
Quote:
--------------- Added [DATE]1460691040[/DATE] at [TIME]1460691040[/TIME] --------------- This works on my vB 3.8.9: PHP Code:
|
tried your posted first and was like hey this is exactly what i was looking for =)
put in Code:
$t_arr = $vbulletin->templatecache; so this little snippet is more useful than one might think, this is a global replacer and its wonderful =) thanks mark! |
Glad to help, Ryan!
One thing I still don't understand is why, when I tried using a foreach loop to iterate through the $vbulletin->templatecache array, it would only get the last template in the array (same issue with vB 4). But, using the for loop worked, so I went with that. :D |
All times are GMT. The time now is 02:23 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|