Hi,
just a heads up. I had a problem with getting error;
Uncaught TypeError: Cannot call method ‘on’ of undefined media-modal.js:28
openFrame media-modal.js:28
v.event.dispatch load-scripts.php:2
o.handle.u load-scripts.php:2
This was caused by not setting thumbnail support on the custom post type. As I didn’t want the regular ‘Featured image’ to show up, I activated the support and removed the ‘Featured image metabox’ using;
// Remove unused metaboxes in admin
function remove_metaboxes() {
remove_meta_box( 'postimagediv', 'my_cpt', 'side' );
}
add_action( 'do_meta_boxes' , 'remove_metaboxes' );
in functions.php.
Could be a nice feature to check for support and include the related files if support is not set? Great plugin!
Regards,
Kristofer