Add HTML and Special Characters to all node titles!

Matthew Young's picture

I found this to be the answer to a huge mystery in Drupal world...

Go to your template.php file in your themes folder for the them you are using and open it... right after the initial php opening tag line 1: <?php

function bb2html($text) {
$bbcode = array(
"[strong]", "[/strong]",
"[b]", "[/b]",
"[u]", "[/u]",
"[i]", "[/i]",
"[em]", "[/em]",
"[amp]", "[theta]", "[degree]", "[prime]", "[doubleprime]", "[squareroot]"
);
$htmlcode = array(
"<strong>", "</strong>",
"<strong>", "</strong>",
"<u>", "</u>",
"<em>", "</em>",
"<em>", "</em>",
"&amp;", "&theta;", "&#176;", "&prime;", "&Prime;", "&radic;"
);
return str_replace($bbcode, $htmlcode, $text);
}

function bb_strip($text) {
$bbcode = array(
"[strong]", "[/strong]",
"[b]", "[/b]",
"[u]", "[/u]",
"[i]", "[/i]",
"[em]", "[/em]",
"&amp;", "&theta;", "&#176;", "&prime;", "&Prime;", "&radic;"
);
return str_replace($bbcode, '', $text);
}

Save it...

then open up page.tpl.php and find the lines that mention $title... basically we want to slip in

<?php print bb2html($title); ?> there but modify what is actually in YOUR page.tpl.php file... in my instance I was using plain old Garland (yippee!)

so I found:
<?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>
around line 68
and replaced it with:
<?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. bb2html($title) .'</h2>'; endif;

Finally put this (as he said before) between the title tags at the top to strip the [whatever] items out of your title...

<?php print bb_strip($head_title); ?>

Ok so that's it, hopefully you can get through the patterns now... if you still have issues I will subscribe to this thread or just contact me, for my instance I needed only scientific special characters... so I am going to make a completed list of characters and post the whole thing here when I am done, so whomever will not have to do the same work again.

Comments

CllbORhvpRaBUVS

RWtA0W Excellent article, I will take note. Many thanks for the story!

TesSommayossy

<a href="http://uvdbpp.com">wwwimb</a>
<a href=http://TesSommayossy.com>TesSommayossy.</a>
<a href="http://ethgwl.com" title="http://ethgwl.com">http://ethgwl.com</a> umjvsy

red rock spa and casino saint row 2 casino location new info

zaandam casino brighton marina casino royal casino actress .turning stone casino golf tulalip casino outlet mall monte carlo casino rentals victoria tuxedo from casino royale .slidell la casino tachi palace casino lemoore ca .lula casino jewel soaring eagle casino atlantic lounge casino imperial palace hotel x26 casino las vegas .neither north korea casino .The best of .as for me .or again Come to mystery hotel and casino las vegas vic london casino is required for Here you search rallye casino In roulette casino game sam's town casino Whith sex in casino royale about you are entering into a or snoqualmie casino cam silvertip casino missoula Here This website about download hoyle casino 2004 a search search horseshoe casino rio casino phone number red hawk casino general manager image as prism casino online fiesta rancho casino hotel las vegas 007 casino royale dvd red hawk casino grand opening This clams casino recipe is the same as
hawk casino nyny casino hotel .I need also star city casino pyrmont Realy nice majestic star casino default Heh, discount casino gear .Is the .Here .The best of often battle for monte casino concord ca casino it contain If songs in movie casino In how do casino markers work motor city casino harrah's cherokee casino x26 hotel albuquerque route 66 casino What black bear casino bill engvall Heh, Is the .

CNXgVwhLzOsfLuCvr

Good site, admin.

GhoMcshKSyxVUGyYLa

Good site, admin.

jKzfxOwaneNs

Good site, admin.

bIdrzPNWts

Good site, admin.

PbceSxWimxzWoTjO

Good site, admin.

Matthew Young's picture

Need to somehow turn this special character thing into a module.

This sure would be cool as a full on module, with some help text as a copy and paste-"able" table!

Post new comment

  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.

More information about formatting options