Hi,
give me a little time and I will answer your questions as soon as possible!
Update:
1. When the client receives the email, I don't want the digital signature to be added as a png file. Only the PDF document.
I made a mistake please follow Tihana's answer for this step
3. Where or how can one adjust the size of the signature that gets embedded in the pdf document?
Please open the following file :
\joomla\media\breezingforms\pdftpl\pdf_attachment.php
and inside add this :
<?php echo $data[_FF_DATA_TYPE] == 'Signature' && file_exists(JPATH_SITE.'/media/breezingforms/signatures/'.$data[_FF_DATA_VALUE]) ? '<img src="'.JPATH_SITE.'/media/breezingforms/signatures/'.$data[_FF_DATA_VALUE].'" height="120" width="120"/>' : nl2br(htmlentities(substr(is_array($data[_FF_DATA_VALUE]) ? implode('|',$data[_FF_DATA_VALUE]) : $data[_FF_DATA_VALUE],0,10000), ENT_QUOTES, 'UTF-8')); ?>
I added
height="120" width="120" but you can set it to what suites you best.
4. What formatting options (CSS etc) are available for the pdf document?
please take a look at this article on how to modify PDF attachments:
crosstec.org/en/support/online-documenta...-s-pdf-template.html 5. Change the name of the pdf that gets emailed to the recipient (ffexport-pdf-20211126143804-1906413614.pdf).
Please see this link below:
crosstec.org/en/forums/1-forums/127659-c...to-field.html#241112 2. I want the calendar to show the date as: Day Month Year (%e.%B.%Y). But when I enter this in the format field, the calendar values aren't saved.
can you try with this format:
Calendar is using Joomla Calendar API:
docs.joomla.org/Calendar_form_field_type
Regards,
Mirko