ims_delete_promotions

Description

The “ims_delete_promotions” action runs after a promotion has been deleted.

A plugin (or theme) can add an action with the code:

<?php add_action( 'ims_delete_promotions', 'filter_function_name'); ?>

The hook is located in the image-store/_inc/pricing.php file.

Example

// apply action
function action_ims_delete_promotions( ) {
	//run action here
}
add_action('ims_delete_promotions', 'action_ims_delete_promotions');

Leave a Reply

Your email address will not be published. Required fields are marked *