Title: Customize Invoice
Last modified: September 14, 2024

---

# Customize Invoice

 *  Resolved [ssmithalignsoftcom](https://wordpress.org/support/users/ssmithalignsoftcom/)
 * (@ssmithalignsoftcom)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/customize-invoice/)
 * The default invoice is almost perfect, except we’d like to have the logo at the
   top left of the page, and the company address at the top right (to the right 
   of the logo) to economize on space – stacking the logo and address wastes the
   entire top corner of the page.
   The simple invoice is completely different from
   the default invoice, and I don’t see a way to take, for example, the default 
   invoice php file and modify that as a custom template. I don’t want to modify
   the template file in the plugin itself, as that’s going to get written over every
   time the plugin updates.
 * What’s the best way to accommodate this?

Viewing 1 replies (of 1 total)

 *  Plugin Author [priyankajagtap](https://wordpress.org/support/users/priyankajagtap/)
 * (@priyankajagtap)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/customize-invoice/#post-18031879)
 * Hi [@ssmithalignsoftcom](https://wordpress.org/support/users/ssmithalignsoftcom/),
   
   Sorry for the delayed response to this.You can use our plugin’s ‘**wcdn_head**‘
   hook to achieve your requirements. You can use the Code Snippets plugin and add
   the custom code there.Below I am providing the example code where you need to
   replace the CSS code (Added under the <style> tag ) as per your requirements:
 *     ```wp-block-code
       /** * Add this code snippet in the functions.php file of your currently active theme. */function example_serif_font_and_large_address() {    ?>    <style>	                        .order-addresses address {                font-size: 2.5em;                line-height: 125%;            }    </style>    <?php}add_action( 'wcdn_head', 'example_serif_font_and_large_address', 20 ); 
       ```
   
 * Please check once and let me know if the above provided code snippet is helpful
   for you.
   Feel free to ask if you have any other queries.

Viewing 1 replies (of 1 total)

The topic ‘Customize Invoice’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce-delivery-notes/assets/icon-256x256.jpg?rev=2829362)
 * [Print Invoice & Delivery Notes for WooCommerce](https://wordpress.org/plugins/woocommerce-delivery-notes/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce-delivery-notes/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce-delivery-notes/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce-delivery-notes/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce-delivery-notes/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce-delivery-notes/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [priyankajagtap](https://wordpress.org/support/users/priyankajagtap/)
 * Last activity: [1 year, 8 months ago](https://wordpress.org/support/topic/customize-invoice/#post-18031879)
 * Status: resolved