- If the default PDF Quote doesn’t meet your needs, we offer an easy way to customize it.
- To do this, simply override the PDF template files in your theme or child theme. Here’s how:
- Create the folder in the following structure:
/themes/theme_or_child_theme/quoteup/admin/pdf-quote. - Copy the desired template file into this folder and customize it to fit your requirements.
- Create the folder in the following structure:
- By overriding the template files this way, your changes will remain unbroken even when you update the PEP to a new version.
- We strongly recommend using a child theme for these changes; otherwise, if you update the main theme, your customizations may be lost.
Example Scenario:
If the text note at the bottom of the default generated quote does not meet your requirements and needs to be removed, please follow these steps:
- Override the Template:
- Copy the template file from:
/plugins/product-enquiry-pro/templates/admin/pdf-quote/tax-shipping-note.php
to your theme or child theme at:/themes/theme_or_child_theme/quoteup/admin/pdf-quote/tax-shipping-note.php. - Replace the existing code in this file with the following code:
- Copy the template file from:
<table class="quote-pdf-note">
<tr>
<td>
<?php _e('TAX', QUOTEUP_TEXT_DOMAIN); ?>:
</td>
<td colspan="4">
<?php _e('Quote does not include default store tax', QUOTEUP_TEXT_DOMAIN); ?>.
</td>
</tr>
</table>
RESULTS:
Before adding the code

After adding the code
