• Hi,
    I want to replace the Invoice word with Tax Invoice how to do it?

    Also in the Invoice, Below the Product Name, it is showing the Weight of the product. So, how to remove it?

    And is it possible to add the signature in the Invoice?

    Please guide me.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Contributor kluver

    (@kluver)

    Hi @kdmahesh1788,

    I’ll try to answer your questions one by one.

    1) I want to replace the Invoice word with Tax Invoice how to do it?
    The easiest way is with our Professional extension. You can change the document title right in the plugin settings. But you can also use a small code snippet: Change the document title

    2) Also in the Invoice, Below the Product Name, it is showing the Weight of the product. So, how to remove it?
    To remove the weight from the invoice you can use another code snippet that adds a little custom CSS:

    add_action( 'wpo_wcpdf_custom_styles', 'wpo_wcpdf_custom_styles' );
    function wpo_wcpdf_custom_styles () {
    	?>
    	.invoice dt.weight,
    	.invoice dd.weight {
    		display:none;
    	}
    	<?php
    }

    This snippet should be placed in the functions.php of your child theme. If you haven’t worked with code snippets or functions.php before please read this: How to use filters

    3) And is it possible to add the signature in the Invoice?
    Yes, you can add images to your documents: Insert images

Viewing 1 replies (of 1 total)
  • The topic ‘Invoice text change Tax Invoice’ is closed to new replies.