Description
The “ims_pricing_{$tab_id}_tab” action runs for each pricing tab, it allows you to add content to the tab-content area.
A plugin (or theme) can add an action with the code:
<?php add_action( 'ims_pricing_{$tab_id}_tab', 'filter_function_name'); ?>
The hook is located in the image-store/_inc/pricing.php file.
Example
// apply action function action_pricing_packages_tab( $ImStore ) { //run action here } add_action('ims_pricing_packages_tab', 'action_pricing_packages_tab');
Note: $ImStore is the global image store object.