Hello,
I’ve had some issues not being able to reply when you’ve posted your question and then totally forgot about it. Don’t know are you still using having this issue but here’s my response.
My educated guess is that your theme or some plugin is loading its own copy of jQuery (usually very old version) and that when Quick Chat loads proper WP provided jQuery version, javascript on your site breaks. If you are still on this issue you can post your site link and I will debug using Firebug so we will know for sure.
Once again sorry for the delay,
Marko
Thread Starter
ZoiX
(@zoix)
Marko!
In my theme I had a mistake, and you’re right. I just include <?php wp_enqueue_script(“jquery”); ?> and delete all my own calls to another jQuery libraries and work perfect!
Thank you for your kindness and don’t worry for the delay, it is completely understandable.
I need some clarification on this. On my site, the username and message box shows, but the actual chat history window does not show.
If this is a Jquery problem then how can I fix it without breaking my theme?
My theme is loading jquery from http://domain.com/wp-includes/js/jquery/jquery.js?ver=1.7.1
If this is a Jquery issue then how would I correct it?
Thanks
Hi,
I’m publishing Quick Chat 3.20 with some bug fixes today so you should try installing it to see are your problems resolved. Anyways if Quick Chat is failing it rarely does that silently without error message. It would help to look at your browser Javascript console while your page is loading and what error is displayed there. If you find the error message you can post here, and I’ll see what can be done. Quick Chat works fine on clean WP install so disabling other plugins and enabling one by one usually gives some info.
Regards,
Marko
Hello Marko,
I tested version 3.31 and I had to disable your jQuery loading function:
remove_action('wp_enqueue_scripts', 'quick_chat_jquery');
remove_action('admin_enqueue_scripts', 'quick_chat_jquery');
Otherwise the jQuery library for wp-admin was not loading and post editing had several issues (buttons not working etc.). WP was version 3.2.1.
Thanks,
Martin