Remove Percentage Column
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 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' ); |