Hi,
From the screenshot it seems there’s a conflict with another plugin. Add the following code to your child theme’s functions file:
add_action('wp_footer', function(){
if ( !function_exists('bbpm_is_messages') || !bbpm_is_messages() )
return;
wp_enqueue_script('jquery');
?>
<script type="text/javascript">
jQuery(document).ready(function($){
$(document).on('click', '.bbpm-chats .bbpm-chat', function(e){
if ( e.target && 'a' == $(e.target).prop('tagName').toLowerCase() ) {
return;
}
location.href = '<?php echo bbpm_messages_url(); ?>' + $(this).attr('data-chatid') + '/';
e.preventDefault();
});
});
</script>
<?php
});
It should work. Let me know.
Best,
Samuel