BlackPowderSmoke
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments work on Pages but not on PostsIt worked, thanks a million.
Forum: Fixing WordPress
In reply to: Comments work on Pages but not on PostsHave tried different themes with the same problem, I will check out the index.php inside of the current theme folder.
Forum: Fixing WordPress
In reply to: Comments work on Pages but not on PostsThe posts above stated index.php, here is my code for index.php….
<?php
/**
* Front to the WordPress application. This file doesn’t do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*//**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define(‘WP_USE_THEMES’, true);/** Loads the WordPress Environment and Template */
require(‘./wp-blog-header.php’);
?>>
Forum: Fixing WordPress
In reply to: Comments work on Pages but not on PostsDeleted duplicate post
Forum: Fixing WordPress
In reply to: Comments work on Pages but not on PostsFor clarification: Pre existing comments are displayed, but the post page shows Comments closed.
I have tried the global settings. Allow Comments option is not given during post editing or new posts.Forum: Fixing WordPress
In reply to: Comments work on Pages but not on PostsI am having the same problem. Have tried everything.
Try adding:
<?php $withcomments=1; comments_template(); ?>inside the Loop on index.php.
When trying the above, I got a template sparse error message. What is meant by “inside the loop” ?