1

Topic: H1 and H2 tags

It would be nice if someone would make simple modification to show H1 tag for Topic title and H2 tag for category description in punbb!

For a samle please check here : http://www.istoritve.com/showthread.php?t=44

2

Re: H1 and H2 tags

Heh no one ? It would be great addition for seo !

Re: H1 and H2 tags

I don't get what you want really...

4

Re: H1 and H2 tags

To show forum topic as H1 tag and Forum Catefory description as H2  between forum menu and posts ! Check out the link I gave in first post !

Re: H1 and H2 tags

Ah, I see now. You should be able to easily modify the current navigation wink

6

Re: H1 and H2 tags

I want to parse <?php echo $cur_topic['forum_iname'] ?> and
<?php echo pun_htmlspecialchars($cur_topic['subject']) ?>

I tried but it gives me errors sad  I tried putting this into viewtopic.php but no no

Re: H1 and H2 tags

<?php echo "<h1>".$cur_topic['forum_iname']."</h1>" ?>
<?php echo "<h2>".pun_htmlspecialchars($cur_topic['subject'])."</h2>" ?>

Or something like that.

8

Re: H1 and H2 tags

Great elbekko thanks this is working like a charm !!! Thanks