Description
The “ims_update_pricelist” action runs after a package has been updated.
A plugin (or theme) can add an action with the code:
<?php add_action( 'ims_update_pricelist', 'filter_function_name'); ?>
The hook is located in the image-store/_inc/pricing.php file.
Example
// apply action function action_ims_update_pricelist( $list_id ) { //run action here } add_action('ims_update_pricelist', 'action_ims_update_pricelist');
Note: $list_id is an integer of the package created.
Leave a Reply