[Plugin: AJAXed WordPress] Inline Comments not displaying
-
I’ve inserted the required php calls into my theme (index.php) as required, but when I click the link to my comments, it still just takes me to the single post page with the comments on it. The whole reason I installed this plugin was for the inline comment functionality, but that doesn’t seem to be working.
This is my loop area, where I’ve inserted the comments, and I can’t seem to figure out why the AJAX isn’t working:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <p class="date"> <span class="month"> <?php the_time('M') ?> </span> <span class="day"> <?php the_time('d') ?> </span> <span class="year"> <?php the_time('Y') ?> </span> </p> <h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="meta"> <p>Published by <?php the_author_posts_link() ?> under <?php the_category(',') ?> <?php edit_post_link(); ?></p> </div> <div class="entry"> <?php the_content(__('Continue Reading »')); ?> <?php wp_link_pages(); ?> </div> <p class="comments"> <?php do_action('awp_comments_link');?><br /> <?php do_action('awp_comments'); ?> </p> </div>
Please let me know if I can provide any more information regarding my setup, etc.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: AJAXed WordPress] Inline Comments not displaying’ is closed to new replies.