Description
The “ims_before_sagepay_notice” action runs before the SagePay transaction notice has been processed.
A plugin (or theme) can add an action with the code:
<?php add_action( 'ims_before_sagepay_notice', 'filter_function_name' ); ?>
The hook is located in the image-store/_inc/gateways/sagepay.php file.
Example
// apply action function action_ims_before_sagepay_notice( $deprecated, $cart_id ) { //run action here } add_action('ims_before_sagepay_notice', 'action_ims_before_sagepay_notice');
Note: $deprecated is an boolean, $cart_id is an integer.