“wpcfe_shipment_table_data” an action hook is use to add additional column in the shipment table data. This hook will display after the receiver column.
Note: You must have custom table header added already for the custom data. Please check this hook “wpcfe_shipment_table_header”
![]()
Copy and paste the following to for customized the label in the theme functions.php file
add_action( 'wpcfe_shipment_table_data', function( $shiment_id ){
// Note: Use the $shipment_id variable to get shipment data
?>
<th class="no-space">Custom Value <?php echo $shiment_id; ?></th>
<?php
}, 25 );