wpcfe_start_bol_section
“wpcfe_start_bol_section” allows to add additional information after the BOL title.
Copy and paste the following code to the theme functions.php file for sample report.
// Note: Wrap it with tr and td element because the template is design in table element add_action('wpcfe_start_bol_section', function( $shipment_id ){ ?> <tr> <td colspan="2"><p style="font-size:22px;"><strong>Desclaimer:</strong> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p></td> </tr> <?php });