XF 2.0 Node icon redirection

Betclever

Well-known member
Hello,

Actually, we have to click on the forum to view the content so open the forum but I would like to add the same option on the node icon...

1527349962420.webp

So the goal is also clicking on the icon to open the forum so is this possible?

Thanks.
 
You'll need to edit: node_list_forum.

Find:
Code:
<span class="node-icon" aria-hidden="true"><i></i></span>

Change to:
Code:
<span class="node-icon" aria-hidden="true"><a href="{{ link('forums', $node) }}"><i></i></a></span>

You may want to edit: node_list_page, node_list_category, node_list_link

Although with your custom add-ons if you're using an add-on you may need to ask the author.
 
You'll need to edit: node_list_forum.

Find:
Code:
<span class="node-icon" aria-hidden="true"><i></i></span>

Change to:
Code:
<span class="node-icon" aria-hidden="true"><a href="{{ link('forums', $node) }}"><i></i></a></span>

You may want to edit: node_list_page, node_list_category, node_list_link

Although with your custom add-ons if you're using an add-on you may need to ask the author.

Thanks for the solution but it doesn't work.
I changed the code in the above templates but no change. :(
 
Top Bottom