hi
i use comment_form() to generate a few forms but only the first one works – the athers don`t use ajax
is there a solution ?
thanks
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>on my site https://www.baseshamai.com it seems it will say thank you for sending comment even when an email was not put in.
the comment does not get added but why is the message ;thank you’ appearing?
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>Hello,
Any chance the plugin author could make this plugin compatible with https://www.ads-software.com/extend/plugins/growmap-anti-spambot-plugin/ GASP.
Since upgrading to WP 3.4.1 PTM Ajax is deleting comments from people that forget to tick the GASP tick box.
It was working previously.
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>This bug does not occur in Chrome and Firefox, only Internet Explorer 9 (and possibly other versions of IE)
1) When clicking Reply to a any comment except the last one, posting a message and clicking Post Comment brings the poster to another page (wp-comments-post.php) where the posted message is the only thing on it at the top left. Clicking reply in that bring up an error.
2) When clicking Reply to the last comment, the comment does not appear after posting and requires a refresh.
Please help.
Francis
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>When the redirection plugin (https://www.ads-software.com/extend/plugins/redirection/) is enabled all submitted comments are giving the following error “An unknown error occured. Please try again.”
The comment is going through, but the ajax is not working so you only get to see the comment on a page refresh.
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>When I would try to reply to a comment, the threading didn’t work and I ended up with a white screen.
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>The plugin is working almost as it should…or it probably is but something wrong with my conf. I’m using callback function which is pretty much the same as the example in the twentyten theme functions.php.
But for some reason when replying to a comment the reply doesn’t get the proper classes (depth-2 etc.) and therefore renders as it was the depth-1 comment (gets those classes). After page refresh it does render correctly as depth-2.
If I disable the callback, then the class is set properly so my guess is that this has something to do with the callback function and how it’s set up but I can’t figure it out… Or could it be something else?
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>Hello,
i have setup that plugin its working fine but i have accordion menu setup in my website and its stop working. if i turn off this plugin then accordion menu start working again.
Please help me i need both of the plugin
Thank you
M
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>Hi,
This plugin is not working with my Ecclesia theme:
https://themeforest.net/item/ecclesia-wordpress-theme-for-church-websites/196410
1) I activate plugin
2) I type (for example) invalid characters in commentform
3) I press submit
$) The standard WP error window appears!
I think the theme is the problem. Who can help me with that?
Guido
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>Well,
I liked very much the plugin, however I as I’m Brazilian I certainly need to translate the messages and I couldn’t find the option for
“Please fill in all required fields”
Any workaround to fix that?
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>Hello,
Any chance the author is considering adding an Ajax paginate option to this plugin?
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>I can’t get the plugin work with custom callback.
I’ve done all the setting in the wp-admin page and if I write a the script work, but not update the page with the new comment. I receive only the message “Your comment has been added, thank you!” then I need to refresh the page to see the new comment.
It seems that the plugin works weel only without the custom callbacks.
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>Hello,
I can’t get PTM AJAX Comments to work in my theme. I checked the FAQ and I believe all the necessary tags ad ID’s are there.
Also the plugin works fine in the twentyten theme. So there are no plugins conflict.
But confusing is it when I override the “comments.php” in the twentyten theme with my own “comments.php” the plugin works fine. It’s the same code it use (no function.php), but it only works in the twentyten theme. The layout is correct displayed (off course without css markup).
I also checked if I was missing something in the header.php. But the <?php wp_head(); ?> is there.
Firts I will copy my theme’s comments.php:
<?php if(!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) : ?>
<?php die('You can not access this page directly!'); ?>
<?php endif; ?>
<?php if(!empty($post->post_password)) : ?>
<?php if($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) : ?>
<p>This post is password protected. Enter the password to view comments.</p>
<?php endif; ?>
<?php endif; ?>
<?php if(comments_open()) : ?>
<?php if(get_option('comment_registration') && !$user_ID) : ?>
<?php else : ?>
<div class="commentbox commentboxinput clearfix">
<div class="commentavatar floatleft">
<?php global $userdata; get_currentuserinfo(); echo get_avatar($userdata->ID, 50); ?>
</div>
<div class="commentcontent floatleft">
<div class="commentheading clearfix">
<h2 class="floatleft">
<?php echo $user_identity; ?></h2>
<p class="floatright">Now</p>
</div>
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<textarea name="comment" id="comment" class="commentinput inputstylebox" onfocus="checkOnFocus(this);" onblur="resetInitialText(this);"></textarea>
<input name="submit" type="submit" id="submit" class="sendcomment floatright inputstylebox" value="Submit" />
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
<?php do_action('comment_form', $post->ID); ?>
</form>
</div>
</div>
<?php endif; ?>
<?php else : ?>
<p>Comments are closed.</p>
<?php endif; ?>
<ol class="commentlist">
<?php if($comments) : ?>
<?php foreach (array_reverse($comments) as $comment) : ?>
<li <?php comment_class(); ?> id="comment-<?php comment_ID(); ?>">
<div class="commentbox clearfix">
<div class="commentavatar floatleft">
<?php
$urlHome = get_option('home');
echo get_avatar( $comment, $size='50', $default = $urlHome . '/wp-content/themes/hmc/images/avatar.png' );
?>
</div>
<div class="commentcontent floatleft">
<div class="commentheading clearfix">
<h2 class="floatleft"><?php comment_author_link(); ?></h2>
<p class="floatright"><?php echo human_time_diff( get_comment_time('U'), current_time('timestamp') ) . ' ago'; ?></p>
</div>
<?php comment_text(); ?>
</div>
</div>
</li>
<?php endforeach; ?>
<?php else : ?>
<?php endif; ?>
</ol>
With this markup in the comments.php do I need to adjust the functions.php? I don’t make use off a callback in this script.
For everybody who is reading this; already thanks for reading!
(sorry for my bad English…)
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>Nice plugin, maybe on of the best Ajax plugin for comments.
I noticed some strange things:
The plugin works perfect if you enter all fields with text.
If you remove the name the plugin show the message that the comments is submitted but it isn’t.
If you post the form with an empty email address the plugin shows “-1” above the form and also the message that the comment is submitted (it’s not), the same for a non-valid e-mail address.
I hope my post helps to make this plugin better ??
regards
Olaf
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>hello, your plugin is very useful but i have a problem with buddypress. When PTM AJAX Comments is active the menu in the page activity do not refresh page when change from one to other voices. I think is a conflict with javascript but I don’t know how to solve. I use wp 3.2.1 and buddypress 1.2.9. Someone has some suggestions? Thanks in advance! ??
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>Not sure what happened, but they are not working at all. Not really sure where to start to fix it either. Any help would be greatly appreciated.
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>Hello everyone, I’m trying ti use a plugin called PTM AJAX Comments, The Plugin requires the input of a couple of functions in order for it to work properly. I know arras_list_comments is the call back, but the rest are a bit of a mystery to me. Namely these four..
<ol class=”**[b]commentlis[/b]t**”>
<h3 id=”**respond**”> or <div id=”**[b]respond[/b]**”>
<form action=”wp-comments-post.php” method=”post” id=”**[b]commentform[/b]**”>
<textarea name=”comment” id=”**[b]comment[/b]**” title=”Your comment” title=”Please enter a comment”>
I’ve looked in Comments.php, and several other places, The only thing I can conclude is that the functions do not have the same name as the default. Any Idea as to how to get this working?
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>https://www.fashion-bop.com/fashion-bop-things-about-us/feedbacks/
You could try it.. settings are the default ones.
Warning: Cannot modify header information – headers already sent by (output started at /*****/html/wp-includes/comment-template.php:1348) in /*****/html/wp-includes/pluggable.php on line 897
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>Hi, When I use custom theme on wp, I have a small problem:
In default PTM AJAX Comments plugin use “<ol class=”commentlist”>” on commentlist, but how to change it like: <ul id=”commentlist”>?
Thanks.
This is a small request. Hoping you’d be able to include it in the next release. Essentially, it’s just having the <?php cancel_comment_reply_link(”); ?> function activate upon hitting submit when responding (using Reply) to someone’s comment.
That way, the comment box that was now under the comment you were replying to will return to its original placement.
Could you implement such a feature?
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>I notice that the plugin uses comment_post_redirect regardless of whether the comment is posted via the ajax call or via the standard form (i.e. if JS is disabled on client). I like this plugin, but our blog needs to work for noscript users, so perhaps something like this?
js/ptm-ajax-comments.dev.js:51 Add:
jQuery(‘#submit’).after(‘<input type=”hidden” name=”ptm-enabled” value=”1″ />’);
lib/Class.PTM_AJAXCommentsFront.php:21 Add:
if(array_key_exists(‘ptm-enabled’, $_POST))
add_action( ‘comment_post_redirect’, …
Basically, neuter the plugin if the javascript-created “ptm-enabled” input is absent in the post handler. Agree?
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>Let me show you the comment code in the page.php file first, so there’s no doubt about how the page is being generated – NOTE: I had to add some of the code, since I am posting comments on WP pages here..
<?php
/*
Template Name: Page Full Width
*/
?>
<?php get_header(); ?>
<div id="main">
<div id="contentwrapper2">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="topPost"> <h2 class="topTitle"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<div class="topContent"><?php the_content('(continue reading...)'); ?></div><strong>
<div class="cleared"></div><small><?php edit_post_link('Edit this entry?','',''); ?></small>
<div id="comment"><div class="cleared"></div>
<?php comments_template(); ?>
<ol class="commentlist">
<?php wp_list_comments(); ?>
</ol></div></strong>
</div> <!-- Closes topPost -->
<?php endwhile; ?>
<?php else : ?>
<div class="topPost">
<h2 class="topTitle"><a href="<?php the_permalink() ?>">Not Found</a></h2>
<div class="topContent"><p>Sorry, but you are looking for something that isn't here. You can search again by using <a href="#searchform">this form</a>...</p></div>
</div> <!-- Closes topPost -->
<?php endif; ?>
</div> <!-- Closes contentwrapper2-->
<div class="cleared"></div>
</div><!-- Closes Main -->
<?php get_footer(); ?>
AFter installing and activating your plugin, I went to a pages that has comments, but did not see any changes.
Can you please offer a suggestion.
PS: here’s a link to the page.
Thank you for your help.
]]>Hi Pete,
First of all, thanks for the plug-in.
I have a problem with it on an AJAX loaded sub-page, when the comments field is being loaded in with an AJAX call, then posting a comment opens a new page, and not the modal overlay.
This is the page used: https://baksagaspar.com/MH-work/latest-news/
And here I load in the different posts of the News category together with their comments by an AJAX call, but then the plug-ins AJAX functionality doesn’t work, but opens a new window with this address: https://baksagaspar.com/MH-work/wp-comments-post.php
Any suggestions how this could be solved?
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>Hi at all, I have a little problem, if I put the comment on home page when I write a comment I’m redirect on a blank page https://localhost/…/wp-comments-post.php (I try it only in localhost)
for add the comment on home page I use this code
<?php global $withcomments; $withcomments = true; comments_template(); ?>
where is the problem for you?
thank you
kikko088
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>Hi,
Thanks for the plugin!
I have an issue where the CSS doesn’t apply to the comment until I refresh the entire page though.
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>I installed PTM ajax comments on a blog that also uses the WP-Typography plugin and encountered a small problem:
PTM ajax shows strange characters like “?” between normal letters in comment texts after submisson, if the comment is held for moderation and only shown to the user as preview after submission.
The comment text saved to the database is correct, however, and once accepted the comment text shows up correctly on the site too. It’s just that the preview is completely unintelligible and might cause users to think their comment wasn’t submitted correctly.
If wp-typography is disabled, everything works like fine.
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>If you have any feature requests please post them in this thread, thanks.
https://www.ads-software.com/extend/plugins/ptm-ajax-comments/
]]>