Default VAT Tax Rate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // don't include this in your functions.php | |
function si_add_ca_tax_default( $columns = array() ) { | |
if ( isset( $columns['tax_vat'] ) ) { | |
$columns['tax_vat']['value'] = 24; | |
} | |
return $columns; | |
} | |
add_filter( 'si_line_item_columns', 'si_add_ca_tax_default' ); |
filter: si_line_item_columns