XF 1.5 How to change navigation hook

upnet

Active member
I have an unsupported add-on (did you stop reading my thread right there?) that I believe is using a hook to add it's tab into the navigation bar. I looked in the listener.php file for the add-on (xfa-blogs) but don't see the navigation code there. What would be great is if I could change the link. Does anyone have an idea where I can find that link to edit? You have to be logged into the forums to see the blogs in the navbar, but here is the code.

Code:
<!-- extra tabs: middle -->
        
        
            
                <li class="navTab xfa-blogs Popup PopupControl PopupClosed">
            
                <a href="xfa-blogs/*member*/" class="navLink">Blogs</a>
                <a href="xfa-blogs/*member*/" class="SplitCtrl" rel="Menu"></a>
                
                <div class="Menu JsOnly tabMenu xfa-blogsTabLinks">
                    <div class="primaryContent menuHeader">
                        <h3>Blogs</h3>
                        <div class="muted">Quick Links</div>
                    </div>
                    <ul class="secondaryContent blockLinksList">
    <li><a href="xfa-blog-home/">Blogs Home Page</a></li>
    <li><a href="xfa-blog-list/">All Blogs</a></li>   
    
        
            <li><a href="xfa-blog-watched/blogs">Watched Blogs</a></li>   
        
        <li><a href="xfa-blogs/*member*/">Blogs</a></li>
        <li><a href="xfa-blogs/*member*/new-entry">Create Entry</a></li>
    
</ul>
                </div>
            </li>

I just want to change the link "xfa-blogs/*member*/" to be the static link "xfa-blog-home/", but cannot find that code.
 
How do I find the code? Is that really add-on specific? I understand the add-on is using a hook, I would think that there is some procedure to find the code that applies to all add-ons and not just this one.
 
Top Bottom