autoship_before_autoship_admin_payment_integrations (action)
(templates/admin/payment-integrations.php) Used to add customization before the Payment Integration widget renders in WP-Admin > Autoship Cloud > Payment Integrations.
Code
<?php do_action( 'autoship_before_autoship_admin_payment_integrations' ); ?>
Example
function autoship_after_admin_scheduled_orders_example() { echo "This will appear before the Scheduled Orders admin widget.";<br>} add_action( 'autoship_after_admin_scheduled_orders', 'autoship_after_admin_scheduled_orders_example', 10, 0 );