I made my own plugin …dirty, as I’m new to PHP and WordPress.
I use these:
add_action(’eme_event_form’, ‘amx_eme_event_form_hook’);
add_action(’eme_delete_event_action’, ‘amx_eme_db_delete_event’);
add_action(’eme_update_event_action’, ‘amx_eme_db_update_event’);
add_action(’eme_insert_event_action’, ‘amx_eme_db_insert_event’);
In the eme_event_form action I’m adding the html code and placing it with a JavaScript.
E.g.:
<script type=”text/javascript”>
document.write(‘<div class=”postbox” id=”amx_eme_tag_div”><div class=”handlediv” title=”Click to toggle.”>
</div><h3 class=”hndle”><span>Tags</span></h3><div class=”inside”><div style=”overflow:scroll; height: 250px;”><?php echo str_replace(“‘”, “‘”, $tag_input_checked.$tag_input) ?></div><div><label for=”amx_tag_add”>Tilføj Tags (komma separeret): </label></div><input type=”text” id=”amx_tag_add” name=”amx_tag_add” style=”width: 100%” /></div></div>’);
document.getElementById(‘post-body-content’).appendChild(amx_eme_tag_div);
</script>
I used it to add Tag functionality to the Add/Edit form …but the implementation is so bad, that I will not post i publicly …tell me if you want my code and make a clean version!
Best/
Andy