• Thanks to the developer of this plugin , it works quite well . However, it currently has too few editing options. If there are more editing options in the invoice content, that would be great.

    • Print invoice without price included
    • option to print multiple orders at once
    • change the position of the content columns in the invoice
    • customize the date on the invoice
    • customize the size of the printed paper
    • Customize display of email and phone number on invoice

    Regards,

Viewing 1 replies (of 1 total)
  • moksha shah

    (@mokshasharmila13)

    Hi @anduengraving

    Thank you for your suggestions, We are looking into this issue and trying to enhance our plugin. But we have code for your first two points. For the second point, you can use bulk actions to print multiple orders at once

    For the first point sharing code, please can you add this function in either the functions.php file of your active theme or add it as a snippet using the Code Snippets plugin.

    function Remove_invoice_price() {
    	?>
    	<style>
    	.invoice .order-items .total-item-price, 
    	.invoice .order-items .head-item-price,
    	.invoice .order-items .product-item-price {
    		display: none;
    		}
    	</style>
    	<?php
    }
    add_action('wcdn_head','Remove_invoice_price',20);

    Please let us know if you you have any queries.

    Regards,Moksha.

Viewing 1 replies (of 1 total)
  • The topic ‘Modify invoice printing content (’ is closed to new replies.