wpcfe_shipment_table_header
“wpcfe_shipment_table_header” an action hook is use to add additional column in the shipment table header. Note: This hook will add column after receiver column.
Copy and paste the following to for customized the label in the theme functions.php file
1 2 3 4 5 6 | // Add additional header "Custom Data" add_action( 'wpcfe_shipment_table_header' , function (){ ?> <th class = "no-space" >Custom Data</th> <?php }, 25 ); |