I can't change name of PDF file that is attached in e-mail. Now it is named as 2024.
I change it in PhocaCart Plugin but it still shows same.
Phoca Cart 5.0.0 Beta49
Phoca PDF 5.0.0
PhocaPDFPhocaCartPlugin 5.0.1
Change PDF name
- Jan
- Phoca Hero
- Posts: 48386
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Change PDF name
Hi, what exactly is the attachment? The PDF name in plugin is e.g. ignored for files which are sent per email so each gets right info. For example, order has following name:
This is set in:
administrator/components/com_phocacart/libraries/phocacart/order/status.php
Jan
Code: Select all
$staticData['filename'] = strip_tags(Text::_('COM_PHOCACART_ORDER') . '_' . $orderNumber) . '.pdf';
administrator/components/com_phocacart/libraries/phocacart/order/status.php
Jan
If you find Phoca extensions useful, please support the project
- Nidzo
- Phoca Professional
- Posts: 387
- Joined: 07 Nov 2018, 14:55
Re: Change PDF name
The attachment is Invoice.
- Jan
- Phoca Hero
- Posts: 48386
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Change PDF name
This is the same like for order, the code line is:
so I wonder how you can get only year as the file name ???
Jan
Code: Select all
$staticData['filename'] = strip_tags(Text::_('COM_PHOCACART_INVOICE') . '_' . $invoiceNumber) . '.pdf';
Jan
If you find Phoca extensions useful, please support the project
- Nidzo
- Phoca Professional
- Posts: 387
- Joined: 07 Nov 2018, 14:55
Re: Change PDF name
I have the same code in my Phoca CartJan wrote: ↑22 Apr 2024, 20:20 This is the same like for order, the code line is:
Code: Select all
$staticData['filename'] = strip_tags(Text::_('COM_PHOCACART_INVOICE') . '_' . $invoiceNumber) . '.pdf';
This is how I set invoice name creation:
- Nidzo
- Phoca Professional
- Posts: 387
- Joined: 07 Nov 2018, 14:55
Re: Change PDF name
OK. I found it.
/ is not permitted in Number Format
I changed {orderid}/{year} to {orderid}-{year}
/ is not permitted in Number Format
I changed {orderid}/{year} to {orderid}-{year}
- Jan
- Phoca Hero
- Posts: 48386
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact: