XF 1.2 Help please

C.Stanley

Active member
when you go to my url myurl.com it takes you to my home page, from there you click "forums" and it takes you to my forums. But when you click my logo it takes you back to the home page. Hown can i make it when you click my logo it takes you to my forums?

I have saw a username markup code for latest post somewhere but now cannot locate. Can someone please link me to the username markup code for latest post/thread ect.. (see attached} markup.webp
 
Thanks Mike, Think i found it. First i tried to change homepage url which didnt work. Then i opened template>header>logo block and code is

Code:
<xen:if is="{$visitor.is_moderator} || {$visitor.is_admin}">
<div id="logoBlock">
<div id="logo"><a href="{$logoLink}">
         <span><xen:comment>This span fixes IE vertical positioning</xen:comment></span>
         <img src="@headerLogoPath" alt="{$xenOptions.boardTitle}" />
</a></div>
<xen:elseif is="{$visitor.user_id}" />
<div id="logoBlock1">
<div id="logo"><a href="{$logoLink}">
         <span><xen:comment>This span fixes IE vertical positioning</xen:comment></span>
         <img src="@headerLogoPath" alt="{$xenOptions.boardTitle}" />
</a></div>
<xen:else />
<div id="logoBlock">
<div id="logo"><a href="{$logoLink}">
         <span><xen:comment>This span fixes IE vertical positioning</xen:comment></span>
         <img src="@headerLogoPath" alt="{$xenOptions.boardTitle}" />
</a></div>
</xen:if>
   <div class="pageWidth">
     <div class="pageContent">
       <xen:include template="ad_header" />
       <xen:hook name="header_logo">
       
       </xen:hook>
       <span class="helper"></span>
     </div>
   </div>
</div>

so if i
Find: <div id="logo"><a href="{$logoLink}">
change the a href to forum url it should work?
 
Top Bottom