I noticed when there are more pages in the topic, the links from the Notifications section (bell in the header) do not scroll exactly to the post, as is the case with the red notification boxes on the front page.
there is a difference in the path, here is the path from the home page (from red notification box):
http://www.domain.eu/index.php?u=/topic/topic_number/topic_name/post...
and here is the path from the Notifications section (bell in the header)
http://www.domain.eu/index.php?u=/topic/topic_number/post...
topic_name is missing, when I added the missing topic_name there, the link worked nicely
I found the definition of these links in the file "app.js"
if (data.tid) {
//this is <v.3.7 notification so link needs to be built manually
link = 'topic/' + data.tid + '/post-' + data.pid +
'&page=from_notify&nid=' + notification.id + '#post-' + data.pid;
unique = parseInt(data.tid);}
but I don't know in which variable the topic name is defined so I can put it in the path
Please advice
Thanks