Support is monitored from Monday to Saturday in office hours from the GMT timezone. Our response time can be up to 2 business days.

Notice: We do not accept any customization. Please Read Envato Support Policy. But we still can help with little snippets if that's possible!

Okay
  Print

Fix Extra Theme

Please use this snippet

/**
 * Youzify - Add Missing ImageLoaded JS
 */
add_action( 'wp_enqueue_scripts', 'yzc_add_imagesloaded_js', 0 );
function yzc_add_imagesloaded_js() {
    if ( bp_is_members_directory() || bp_is_groups_directory() ) {
        wp_enqueue_script( 'masonry-yzc', 'https://npmcdn.com/[email protected]/imagesloaded.pkgd.min.js',array( 'jquery' ), '1.0.0', true);
}
}

Put the snippet on bp-custom.php file inside folder "wp-content/plugins". If you don't have yet, please create a new file first.