Member since 2022
Tried the plugin for 10 weeks and have never had any problems
2022-02-11 at 19:36:59Easy and simple plugin.
But the image upload script loads on all pages, not just on topic and reply pages.
The function “hm_bbpui_enqueue_scripts()” should be modified to load on only the needed pagetypes.
The code
function hm_bbpui_enqueue_scripts() {
$get_post_type = get_post_type();
if (‘topic’ == $get_post_type || ‘forum’ == $get_post_type) {
wp_enqueue_script(‘hm_bbpui’, plugins_url(‘js/bbp-image-upload.js’, __FILE__), array(‘jquery’));
wp_enqueue_style(‘hm_bbpui’, plugins_url(‘css/bbp-image-upload.css’, __FILE__));
}
}
Should do the trick
2022-03-24 at 02:01:09