Skip to content

Instantly share code, notes, and snippets.

@romawi69
romawi69 / gist:38a10d52b452a7bc637165422e9147db
Created November 8, 2018 22:36 — forked from ChromeOrange/gist:6548750
Modifying Headers in WooCommerce PDF Invoice
/**
* Modifying Headers
*
* Add to your theme functions.php
*/
add_filter( 'pdf_template_table_headings','custom_pdf_template_table_headings' );
function custom_pdf_template_table_headings( $headers ) {
$headers = '<table class="shop_table orderdetails" width="100%">' .
'<thead>' .
'<tr><th colspan="7" align="left"><h2>' . esc_html__('Order Details', PDFLANGUAGE) . '</h2></th></tr>' .