Remove Percentage Column

<?php // don't add this line since it's already in your functions.php file
function si_convert_perc_to_discount_column_label( $columns = array() ) {
if ( is_admin() ) {
return $columns;
}
unset($columns['tax']);
return $columns;
}
add_filter( 'si_line_item_columns', 'si_convert_perc_to_discount_column_label' );
view raw functions.php hosted with ❤ by GitHub
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.