Description
The “ims_after_wepay_notice” action runs after the WePay transaction notice has been processed.
A plugin (or theme) can add an action with the code:
<?php add_action( 'ims_after_wepay_notice', 'filter_function_name' ); ?>
The hook is located in the image-store/_inc/gateways/wepay.php file.
Example
// apply action function action_ims_after_wepay_notice( $cart_id, $cart_data ) { //run action here } add_action('ims_after_wepay_notice', 'action_ims_after_wepay_notice');
Note: $cart_id is an integer, $cart_data is an associative array.