Loss link in the table of content

hello,
I’m working in OJS-2.4.8 with custom template and I lost de links in the elements of the table of content. How I can recovery this option in the TOC?

greetings.

Hi @martinmesa,

If you’re using custom templates, that’s likely the problem. I would suggest comparing your custom templates to the stock ones for OJS 2.4.8.

Regards,
Alec Smecher
Public Knowledge Project Team

hello,
I resolved the problem. in the file /templates/issue/issue.tlp at line 52, for me, the condition on this line have some error
the original code:

{if !$hasAccess || $hasAbstract}

I only removed the ! in front $hasAccess, because may articles have not abstracts and the second element in the condition will can not happen.

{if $hasAccess || $hasAbstract}