Hi there,
I created a PDF template and it works fine, but what I would like, is that the name will be the exact date and time the PDF is called. So my question is if it is possible to use wildcards in the name of PDF templates? Thanks everybody in advance.
Peter
You would need to modify the code used to generate the pdf. file name is set by:
$file_name = $mod_strings['LBL_PDF_NAME'] . "_" . str_replace(" ", "_", $bean->name) . ".pdf";
Thanks, I’m gonna try your solution.