dwpriv
Forum Replies Created
-
We have a UBL document in our free plugin, but it isn’t setup with the Zugferd standard. I’ve relayed this to the team and we will look into this further.
You can hide it with CSS. Try this code snippet
/**
* Hide custom field on invoice
*/
add_action( 'wpo_wcpdf_custom_styles', function( $document_type, $document ) {
if ( $order = $document->order && $document_type == 'proforma' ) {
?>
.invoice .your-custom-meta-key {
display: none;
}
<?php
}
}, 10 , 2 );Be sure to replace the
your-custom-meta-key
with the CSS selector of the custom field. You can use this guide to find the CSS selector.Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Hide weight@whflive you can use this guide to find the CSS selectors for these areas. You can then add the styles you need to these selectors to get them to look the way you want.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Link e-boekhouden.nlMaybe the setup you’re using to connect the plugin to the eboekhouden.nl is not seeing the invoice number in the meta data. You would have to check the service/plugin that you’re using to connect to the external site, since the invoices exist on the Woocommerce store already (which is what our plugin is designed to do)
We have a UBL document in our free plugin, but it isn’t setup with the Zugferd standard. I’ve relayed this to the team and we will look into this further.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] PDF gliches on accentWhat version did you experience this one?
Since we haven’t heard from you in a while, I will mark this topic as resolved. Feel free to reopen it if you still need more help, or open another thread if you need help with something else.
Since we haven’t heard from you in a while, I will mark this topic as resolved. Feel free to reopen it if you still need more help, or open another thread if you need help with something else.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Problem with Printing ButtonSince we haven’t heard from you in a while, I will mark this topic as resolved. Feel free to reopen it if you still need more help, or open another thread if you need help with something else.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Add VAT Number to PDFSince we haven’t heard from you in a while, I will mark this topic as resolved. Feel free to reopen it if you still need more help, or open another thread if you need help with something else.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] add custom checkout fieldSince we haven’t heard from you in a while, I will mark this topic as resolved. Feel free to reopen it if you still need more help, or open another thread if you need help with something else.
Since we haven’t heard from you in a while, I will mark this topic as resolved. Feel free to reopen it if you still need more help, or open another thread if you need help with something else.
Since we haven’t heard from you in a while, I will mark this topic as resolved. Feel free to reopen it if you still need more help, or open another thread if you need help with something else.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Don′t works pdf invoicesSince we haven’t heard from you in a while, I will mark this topic as resolved. Feel free to reopen it if you still need more help, or open another thread if you need help with something else.
This is possible using a code snippet. If you’re comfortable with PHP, you can use the action filters here to print the note on the invoices. Here’s an example snippet
add_action( 'wpo_wcpdf_after_customer_notes', function( $document_type, $order ) {
echo 'Your note here';
}, 10, 2 );This will print the note in quotes after the customer notes section on the invoices.