Hey there,
I am using Organizing Series in my blog and am quite happy with it. Single but most annoying problem: The plugin does not work for custom post types. Given a post type „foo“, I added a copy of the orgseries_add_meta_box() to orgSeries-admin.php reading orgseries_add_meta_box_foo and added the action-trigger in the same file:
function orgseries_add_meta_box_comics() {
global $orgseries;
add_meta_box('seriesdiv', __('Series', $orgseries->org_domain), 'series_edit_meta_box', 'comics', 'advanced', 'core');
remove_meta_box('tagsdiv-series', 'comics', 'advanced'); //removes series meta box added by WordPress Taxonomy api.
}
Result is the series meta box showing up in post edit for the foo-post type, but any input results in no markup at the front-end.
Best Regards,
Mario