New to Translating WordPress? Read through our Translator Handbook to get started. Hide

Translation of Stable Readme (latest release): Dutch

1 2 3 17
Prio Original string Translation
Print invoices and delivery notes for WooCommerce orders.
Priority: high
You have to log in to add a translation. Details
Print invoices and delivery notes for WooCommerce orders.
Comment

Short description.

You have to log in to edit this translation.

Print Invoice & Delivery Notes for WooCommerce
Priority: high
You have to log in to add a translation. Details
Print Invoice & Delivery Notes for WooCommerce
Comment

Plugin name.

You have to log in to edit this translation.

Please <a href="https://github.com/TycheSoftwares/woocommerce-delivery-notes#translating">contribute your translation</a> to include it in the distribution. You have to log in to add a translation. Details
Please <a href="https://github.com/TycheSoftwares/woocommerce-delivery-notes#translating">contribute your translation</a> to include it in the distribution.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Upload your language file to <code>/wp-content/languages/plugins/</code> (create this folder if it doesn't exist). WordPress will then load the language. Make sure you use the same locale as in your configuration and the correct plugin locale i.e. <code>woocommerce-delivery-notes-it_IT.mo/.po</code>. You have to log in to add a translation. Details
Upload your language file to <code>/wp-content/languages/plugins/</code> (create this folder if it doesn't exist). WordPress will then load the language. Make sure you use the same locale as in your configuration and the correct plugin locale i.e. <code>woocommerce-delivery-notes-it_IT.mo/.po</code>.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

The plugin uses the exact same content as WooCommerce. If the content isn't available in WooCommerce, then it will neither be in the delivery note and invoice. In case you have some special needs, you first have to enhance WooCommerce to solve your issue. Afterwards you can integrate the solution into the invoice and delivery note template via hooks. You have to log in to add a translation. Details
The plugin uses the exact same content as WooCommerce. If the content isn't available in WooCommerce, then it will neither be in the delivery note and invoice. In case you have some special needs, you first have to enhance WooCommerce to solve your issue. Afterwards you can integrate the solution into the invoice and delivery note template via hooks.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

No, this isn't possible. Look for another plugin that can do this. You have to log in to add a translation. Details
No, this isn't possible. Look for another plugin that can do this.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

You can use the functions from WordPress, WooCommerce and every installed plugin or activated theme. You can find all plugin specific functions in the <code>wcdn-template-functions.php</code> file. In addition the <code>$order</code>variable in the template is just a normal <code>WC_Order</code> instance. You have to log in to add a translation. Details
You can use the functions from WordPress, WooCommerce and every installed plugin or activated theme. You can find all plugin specific functions in the <code>wcdn-template-functions.php</code> file. In addition the <code>$order</code>variable in the template is just a normal <code>WC_Order</code> instance.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Unfortunately there isn't yet. But you can look directly at the template files to see what is available. You have to log in to add a translation. Details
Unfortunately there isn't yet. But you can look directly at the template files to see what is available.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Note: Create the <code>woocommerce</code> and <code>print-order</code> folders if they do not exists. This way your changes won't be overridden on plugin updates. You have to log in to add a translation. Details
Note: Create the <code>woocommerce</code> and <code>print-order</code> folders if they do not exists. This way your changes won't be overridden on plugin updates.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Well, first try it with CSS and some filter/action hooks, maybe the questions above can help you. If this isn't enough, you are free to edit the HTML and CSS of the template. Consider this solution only, if you really know some HTML, CSS and PHP! Most probably you want to edit the <code>print-content.php</code> and <code>style.css</code>. Copy the files from <code>woocommerce-delivery-notes/templates/print-order</code> to <code>yourtheme/woocommerce/print-order</code> and start editing them. You have to log in to add a translation. Details
Well, first try it with CSS and some filter/action hooks, maybe the questions above can help you. If this isn't enough, you are free to edit the HTML and CSS of the template. Consider this solution only, if you really know some HTML, CSS and PHP! Most probably you want to edit the <code>print-content.php</code> and <code>style.css</code>. Copy the files from <code>woocommerce-delivery-notes/templates/print-order</code> to <code>yourtheme/woocommerce/print-order</code> and start editing them.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Note: Create the <code>woocommerce</code> and <code>print-order</code> folders if they do not exist. This way your changes won't be overridden on plugin updates. You have to log in to add a translation. Details
Note: Create the <code>woocommerce</code> and <code>print-order</code> folders if they do not exist. This way your changes won't be overridden on plugin updates.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

You can use the techniques from the questions above. Or you consider the <code>wcdn_head</code> hook to enqueue your own stylesheet. Or for full control, copy the file <code>style.css</code> from <code>woocommerce-delivery-notes/templates/print-order</code> to <code>yourtheme/woocommerce/print-order</code> and start editing it. You have to log in to add a translation. Details
You can use the techniques from the questions above. Or you consider the <code>wcdn_head</code> hook to enqueue your own stylesheet. Or for full control, copy the file <code>style.css</code> from <code>woocommerce-delivery-notes/templates/print-order</code> to <code>yourtheme/woocommerce/print-order</code> and start editing it.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

The <code>body</code> tag contains a class that specifies the template type. The class can be <code>invoice</code> or <code>delivery-note</code>. You can prefix your style rules to only target one template. For example you could rise the font size for the addresses on the right side: You have to log in to add a translation. Details
The <code>body</code> tag contains a class that specifies the template type. The class can be <code>invoice</code> or <code>delivery-note</code>. You can prefix your style rules to only target one template. For example you could rise the font size for the addresses on the right side:
Comment

Found in faq paragraph.

You have to log in to edit this translation.

An example that adds a 40px large product image. Paste the code in the <code>functions.php</code> file of your theme: You have to log in to add a translation. Details
An example that adds a 40px large product image. Paste the code in the <code>functions.php</code> file of your theme:
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Yes, use the <code>wcdn_order_item_before</code> action hook. It allows you to add html content before the item name. You have to log in to add a translation. Details
Yes, use the <code>wcdn_order_item_before</code> action hook. It allows you to add html content before the item name.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Legend:
Current
Waiting
Rejected
Fuzzy
Old
Changes requested
With warnings
1 2 3 17

Export as