XF 1.5 Make Categories Unclickable in root node?

XxUnkn0wnxX

Active member
i have noticed on Xenforo and other Xenforo installs around the web. when you go the their root node tree and click on the actual Category only the page moves up or down..

but for me when i click on a Category it opens it as its own forum page.

like on Xenforo you get this: community/#xenforo-community-support.22

notices the hash tag.. well for me it would open the whole category in a new page..

how do i turn this off on my board?

like for me it would open whole page. EG: categories/portalcentric-main-boards.990/
 
In template node_category_level_1

Find (ln8):
Code:
<h3 class="nodeTitle"><a href="{xen:link categories, $category}">{$category.title}</a></h3>

Replace:
Code:
<h3 class="nodeTitle">{$category.title}</h3>
 
Top Bottom