Seite 1 von 1
href Title bei den Links automatisch setzen
Verfasst: 13.05.2005 10:20
von SonnyB
Hallo zusammen,
ich möchte gerne, dass alle Links zu den Foren unter viewforum.php automatisch einen href title bekommen und zwar den "Forumsnamen". Dies soll einen positiven Effekt auf die Suchmaschinen haben.
Danke.
Verfasst: 13.05.2005 11:05
von MrMind
Such in der index_body.tpl nach:
Code: Alles auswählen
<td class="row1" width="100%" height="50"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
und ersetze es durch:
Code: Alles auswählen
<td class="row1" width="100%" height="50"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink" title="{catrow.forumrow.FORUM_NAME}">{catrow.forumrow.FORUM_NAME}</a><br />
Mfg
MrMind
Verfasst: 13.05.2005 11:11
von SonnyB
Super, Danke.
Wie schaffe ich das gleiche für die Forumskategorien und die Beitragslinks (viewtopic)?
Besten Dank.

Verfasst: 13.05.2005 11:22
von MrMind
Für die Kategorien in der index_body.tpl suchen nach:
Code: Alles auswählen
<td class="catLeft" colspan="2" height="28"><span class="cattitle"><a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
ersetzen durch:
Code: Alles auswählen
<td class="catLeft" colspan="2" height="28"><span class="cattitle"><a href="{catrow.U_VIEWCAT}" class="cattitle" title="{catrow.CAT_DESC}">{catrow.CAT_DESC}</a></span></td>
Für die Beiträge in der viewforum_body.tpl einfach nach
Code: Alles auswählen
<td class="row1" width="100%"><span class="topictitle">{topicrow.NEWEST_POST_IMG}{topicrow.TOPIC_TYPE}<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a></span><span class="gensmall"><br />
suchen und durch
Code: Alles auswählen
<td class="row1" width="100%"><span class="topictitle">{topicrow.NEWEST_POST_IMG}{topicrow.TOPIC_TYPE}<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle" title="{topicrow.TOPIC_TITLE}">{topicrow.TOPIC_TITLE}</a></span><span class="gensmall"><br />
ersetzen.
Fertig.
Mfg
MrMind
Verfasst: 13.05.2005 11:29
von SonnyB
Danke, Mr. Mind

.
Verfasst: 13.05.2005 11:31
von MrMind
SonnyB hat geschrieben:Danke, Mr. Mind

.
Keine Ursache, aber vielleicht nächstes mal erstmal selber probieren
Jetzt weißte ja ungefähr wie das abläuft
Mfg
MrMind