Remove link from title or filename

Phoca Download - download manager
rusty10
Phoca Newbie
Phoca Newbie
Posts: 3
Joined: 28 Nov 2011, 18:42

Remove link from title or filename

Post by rusty10 »

HI Jan,

Please can you tell me if it is possible to remove the link from the title or filename so that only the download button can be used to download the file.

cheers

Russ
SonRiab
Phoca Professional
Phoca Professional
Posts: 258
Joined: 02 Jun 2011, 09:29
Contact:

Re: Remove link from title or filename

Post by SonRiab »

You could do this by editing the default_files.php.
I've posted most of the needed steps here: viewtopic.php?f=31&t=16954#p67836
You have to edit this part in the default_files.php (line 57):

Code: Select all

$pdFile .= $linkDownloadB .$l->getName($v->title, $v->filename) .$linkDownloadE;
to:

Code: Select all

$pdFile .= $l->getName($v->title, $v->filename);
rusty10
Phoca Newbie
Phoca Newbie
Posts: 3
Joined: 28 Nov 2011, 18:42

Re: Remove link from title or filename

Post by rusty10 »

Thank you for this. it did exactly wahat i wanted

cheers
Post Reply