Hey and thanks for a great editor!
Is there a way to disable the functions for the "Featured image" in Foliopress so that Wordpress will use its default image uploader for those images?
Thanks
/Andreas
in Foliovision support forums! We provide free support to resolve all reported bugs (please specify OS and browser and steps to reproduce the bug). If you need help with an installation, please submit a request for a Pro Support Incident. We’ll have you up and running in no time, with detailed instructions on how to resolve your issue yourself in the future.
Hey and thanks for a great editor!
Is there a way to disable the functions for the "Featured image" in Foliopress so that Wordpress will use its default image uploader for those images?
Thanks
/Andreas
Hello Andreas,
we are glad that you like our editor!
To disable the Featured Image feature of this plugin, you can put this into your template's functions.php a new simple plugin which you create:
global $fp_wysiwyg; remove_action( 'wp_ajax_seo_images_featured_image', array( &$fp_wysiwyg, 'featured_image' ) ); remove_filter( 'admin_post_thumbnail_html', array( &$fp_wysiwyg, 'admin_post_thumbnail_html' ) );
Or you can set the "Path to images on your web server" in plugin Basic Options to something else than your WP Media path.
Thanks,
Martin
Thank you very much for the support!
/Andreas