View Full Version : Plugin Help - str_replace ?
dartho
02-14-2008, 09:59 PM
I'm still a novice, that's why I'm asking here!
I'd like to create a plugin that will do a simple string replace on the "<HTML>" tag on ALL pages.
I want to replace <html ......>
with <html id=blah ......>
I have previously done a search and replace on all templates, but thought a plugin would be nicer - I try not to manually edit any templates.
Any help appreciated - thanks
Eikinskjaldi
02-14-2008, 10:02 PM
Templates are called with the fetch_template function, have a look in that. It probably lives in functions.php or bigthree, I don't have vb handy to check.
Boofo
02-14-2008, 10:06 PM
Wouldn't that already be parsed at that point?
cheesegrits
02-14-2008, 10:25 PM
It'd might easier to do this with a little bit of javascript in the headinclude template (or add it to $headinclude in a plugin like global_start).
Something like this might do it ...
<script type="text/javascript">
<!--
window.addEvent('domready', function () {
document.getElementsByTagName('html')[0].setAttribute('id','blah');
});
-->
</script>
-- hugh
dartho
02-15-2008, 08:26 AM
No joy with this - i'm thinking old fashioned search and replace may be easiest...
Thanks for the suggestions!
cheesegrits
02-15-2008, 02:26 PM
Ooops, my apologies, I've been coding with Mootools for too long, keep forgetting vB doesn't use it! So window.addEvent() doesn't exist.
Don't really need it tho. Just do this somewhere in headinclude:
<script type="text/javascript">
<!--
document.getElementsByTagName('html')[0].setAttribute('id','blah');
-->
</script>
I just tested it, and it works fine:
<html id="blah" lang="en" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
NOTE - if you just 'View Source", you won't see the change to the html tag. Show source only shows you the page as it was loaded from the server, it doesn't show you any modifications made to the DOM by any JavaScript. You need to run something like FireBug in FireFox to see the modified DOM structure, and use FireBug to "Inspect" the HTML. Then you'll see the modified DOM.
(DOM is the Document Object Model, the actual structure of your page within the browser)
-- hugh
dartho
02-15-2008, 11:08 PM
Will test this out later - thanks. Wonder how Google and the link will see it? I'm testing a theory that google uses ID tags when ranking keywords and thinking this may be yet another SEO helper ...
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.