Description
The “ims_cutomer_data_row” action runs after user (customer ) edit / create customer form is displayed. It can use the action to add additional table rows.
A plugin (or theme) can add an action with the code:
<?php add_action( 'ims_cutomer_data_row', 'filter_function_name'); ?>
The hook is located in the image-store/admin/customers/customers.php file.
Example
// apply action function action_ims_cutomer_data_row( $user_id ) { echo '<tr><td colspan="4">'. _('Content') .'</td></tr>'; } add_action('ims_cutomer_data_row', 'action_ims_cutomer_data_row');
Note: $user_id is an integer.