I'm working with phpbb 3.1.10 with Prosilver template and it's nice to have the color change when hovering over a forum or topic, but I also want it to be entirely clickable.
Therefor in forumlist_body.html I've changed :
Code: Select all
<li class="row">
Code: Select all
<li onclick="location.href='{forumrow.U_VIEWFORUM}';" class="row">
Code: Select all
<li class="row<!-- IF topicrow.S_ROW_COUNT is even -->
Code: Select all
<li onclick="location.href='{topicrow.U_VIEW_TOPIC}';" class="row<!-- IF topicrow.S_ROW_COUNT is even -->
But when I click a topic, it sends me to the board index.
What am I missing?
Thank you in advance for thinking with me