Not sure if explaining correctly. I want something like this:
function my_custom_function( $item, $inventory_id ) {
//some code to do user drop down and get that in a variable.
Echo variable;
}
add_action( ‘wpim_admin_edit_form_after_media’, ‘my_custom_function’, 10, 2 );
Now how would I save the selection? I can add a field to the edit page, but it does not save the data once you leave the page.