Simple and easy to use
-
Easy 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
- The topic ‘Simple and easy to use’ is closed to new replies.