Default VAT Tax Rate

<?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' );
view raw functions.php hosted with ❤ by GitHub

filter: si_line_item_columns

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.