I’m not sure if this is a bug or a feature, and it’s not only in the beta version.
I use the “safe SVG” plug-in on most of my websites. I noticed that I can easily upload SVG‘s in the WordPress media manager, but when I try to do it from cornerstone, I get a file type error.
1 Like
This plugin is only setup to work in the media manager and the posts page. I would reach out to them if they have an alternative solution. You can sorta hack it to work with this.
add_action('cornerstone_before_boot_app', function() {
do_action( 'load-upload.php' );
});
1 Like