- Article statistics showing 0 abstract views and 0 PDF downloads
- How to get total galley view count and display in issue.tpl
- How to get total galleys downloads count
- OJS Usage Statistics
Add following code to your desired template normally article_summary.tpl and/or article_details.tpl
{assign var=galleys value=$article->getGalleys()} {translate key="article.abstract"} View: {$article->getViews()} {if $galleys} {foreach from=$galleys item=galley name=galleyList} {$galley->getGalleyLabel()} downloads: {$galley->getViews()} {/foreach} {/if}