Hi,
please go to:
please go to:
/joomlaroot/components/com_breezingforms/facileforms.process.php
in line 5381 comment this like:
//$pdfname = $this->uploads . '/ffexport-pdf-' . $date_stamp . '-' . mt_rand(0, mt_getrandmax()) . '.pdf':
and add this code:
if($this->formrow->name=='formname'){
$recnr=$this->record_id ;
$pdfname = $recnr ."_at". ".pdf";
}
else{
$pdfname = $recnr ."_at". ".pdf";
}
please replace formname with name of your form (not title)
And customize name which you want, basically, this code show pdf name as "recordid_at.pdf".
Replace it with name which you want
If you need more help, let me know
Regards,
Tihana