Page 1 of 1

Phoca Download Counter

Posted: 07 Apr 2009, 08:31
by koif
Hi,

When I go into the Phocadownloads page on my site (Front end), I see my 4 files that I've uploaded. So eg:
Publications (4)

Some of my publications are just text entries with no download. How would I approach/modify so that the counter will count the text entries as well?

Thanks everyone so much for help!

Re: Phoca Download Counter

Posted: 07 Apr 2009, 14:25
by Jan
Hi, this needs to be customized in model (so it will load count from all files not only from "not" text files)

see e.g. sections model:
components\com_phocadownload\models\sections.php

e.g. line 105:
FROM: . " LEFT JOIN #__phocadownload AS c ON c.catid = cc.id AND c.published = 1 AND c.textonly = 0"
TO: . " LEFT JOIN #__phocadownload AS c ON c.catid = cc.id AND c.published = 1"

Jan