Can only leave 1 comment per page (LightWord)
-
I’ve added some pages to my blog but once somebody comments on them, the option to leave a comment is no longer available, limiting my pages to only 1 comment. Does anybody have any idea why this is? Comments work fine and are unrestricted on posts. I could find no answers from searching these forums or the LightWord website.
Under my pages, the “Allow Comments.” setting is checked.
Under my discussion settings, “Allow people to post comments on new articles,” “Users must be registered and logged in to comment,” and “Enable threaded (nested) comments 5 levels deep” are checked.
I’m using the most recent version of WordPress (2.9.1)
I’m using the most recent version of the LightWord theme by Andrei Luca (1.9.6)
https://www.lightword-theme.com/
https://www.ads-software.com/extend/themes/lightwordI don’t have any plugins activated.
This is the code for “Page Template (page.php):”
<?php get_header(); ?> <div id="content-body"> <?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('<p id="breadcrumbs">','</p>'); } ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div <?php if (function_exists("post_class")) post_class(); else print 'class="post"'; ?> id="post-<?php the_ID(); ?>"> <h2><a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php edit_post_link(__('Edit this page','lightword'), '', ''); ?> <?php the_content(''); ?> <?php if(function_exists('wp_print')) { print_link(); } ?> <?php wp_link_pages('before=<div class="nav_link">'.__('PAGES','lightword').': &after=</div>&next_or_number=number&pagelink=<span class="page_number">%</span>'); ?> </div> <?php if ( comments_open() && $lw_disable_comments == "false" ) : comments_template(); endif; ?> <?php endwhile; else: ?> <h2><?php _e('Not Found','lightword'); ?></h2> <p><?php _e("Sorry, but you are looking for something that isn't here.","lightword"); ?></p> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Any help would be greatly appreciated.
- The topic ‘Can only leave 1 comment per page (LightWord)’ is closed to new replies.