janjonas
Forum Replies Created
-
Thanks for your comment. Are you sure that the problem is caused by the WP-Ajaxify-Comments plugin?
You can use the browser console and test the result of $(“#comment_parent”).val(). After clicking a reply link the result is “0”, after clicking the same reply link again or another reply link, the result changes to a value > 0. In result, after clicking the reply link twice the comment should be saved correctly as reply (even with WP-Ajaxify-Comments enabled).
Could you please test if you can reproduce this behavior and test if disabling the WP-Ajaxify-Comments plugin rely fixes the reply function (when clicking the reply link only ones)?
Hope this helps…
Thanks for your feedback. I will mark this topic as resolved. Maybe you can report this problem to the BlockUI plugin developer…
Forum: Plugins
In reply to: [Ajaxify Comments - Ajax and Lazy Loading Comments] Working conditionI will close that ticket…
Unfortunately, I’ve no Android 2.3.X device. On Android 4 it seems to work fine.
Could you please check the demos from here http://www.malsup.com/jquery/block/#demos on your mobile device?
The WP-Ajaxify-Comments plugin uses the BlockUI plugin to show the popups. Maybe there is a bug in this plugin that causes the issue…Could you please send me a link to the page where I can reproduce the problem?
Forum: Plugins
In reply to: [Ajaxify Comments - Ajax and Lazy Loading Comments] Conflict with Spam PluginTry to change “Before select elements” to
if (!window['Kama_Nounce'] && document.getElementById('submit')) window['Kama_Nounce'] = document.getElementById('submit').onclick;Hope this helps.
Hi,
thanks for your comment. Is your site public available? Is there any chance for me to reproduce the problem?
Regards,
JanForum: Plugins
In reply to: [Ajaxify Comments - Ajax and Lazy Loading Comments] Conflict with Spam PluginCould you please send me a link to the page where I can reproduce the problem?
Thanks for the suggestion: I think, spam protection is a bit out of scope. There are other great plugins that can be used for spam protection. Maybe I will think about this point again when I’ve completed all other points on my wish list 🙂
Great! Thanks for your feedback…
Forum: Plugins
In reply to: [Ajaxify Comments - Ajax and Lazy Loading Comments] Working conditionDoes this problem still exists?
Please try the following settings:
‘OnBeforeUpdateComments’ callback
ckeditorOff();‘OnAfterUpdateComments’ callback
ckeditorOn();Hope this helps…
Hi,
your site includes jQuery twice:Line 56:
<script type='text/javascript' src='http://phanime.net/wp-includes/js/jquery/jquery.js?ver=1.8.3'></script>Line 459
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>The second jQuery include breaks the functionality (jQuery.blockUI is resetted to undefined). If you enable the debugging mode, you will see, that the wp-ajaxify-comments plugin could not be initialized properly. Please disable all other plugins and enable them step by step to find out which adds the second jQuery include and breaks the functionality.
Hope this helps …
Mark this topic as resolved…
Hi,
Thanks for your comment. It should not be that hard to implement this functionality. Nevertheless, it is a bit out of scope. I think this feature should be part of another plugin. Have you already tried to find this functionality in other plugins (for example this one: http://wordpress.org/extend/plugins/live-blogging/)?
Please leave me a message if you do not find any plugin that provides the feature you are looking for and I will think of creating a new plugin.Best Regards,
JanHi,
thanks for your comment.
You can try on of the following “After update comments” setting
CKEDITOR.instances[ckeditorSettings.textarea_id].destroy(true); ckeditorOn();or
CKEDITOR.instances[ckeditorSettings.textarea_id].destroy(true); CKEDITOR.replace(ckeditorSettings.textarea_id, ckeditorSettings.configuration); var labelObj = jQuery('#'+ckeditorSettings.textarea_id).prev('label'); if (labelObj){ labelObj.hide(); }This settings solved CKEditor problems with the Wp-rich-comments. Please leave me a message if this does not work with your CKEditor plugin and I will take a closer look.
Hope this helps…