autoship_before_admin_products (action)
(templates/admin/products.php) Used to add customization before the content of Products page in WP-Admin > Autoship Cloud > Products.
Code
<?php do_action( 'autoship_before_autoship_admin_products' ); ?>
Example
function autoship_before_admin_products_example() { echo "This will appear before the products admin section.";<br>} add_action( 'autoship_before_admin_products', 'autoship_before_admin_products_example', 10, 0 );