wpcfe_before_dashboard_status_report_grid
“wpcfe_before_dashboard_status_report_grid” action hook allow to add additional information before the shipment report dashboard.
Copy and paste the following code to the theme functions.php file
add_action('wpcfe_before_dashboard_status_report_grid', function(){ // Add dummy data before the shipment table ?> <div class="custom-hook-section card p-4 mb-4"> <h2>My Custom hook header</h2> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p> <p>Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p> </div> <?php });