Comments Not Showing on Pages


Author Message
Linda

Posted: 3/7/2009
Quote message 

The Comments feature is not showing up on the Pages only the Posts... does anyone know what the code is that I have to insert into the page.php so that it will add the Comments Box? I have the Wordpress set to allow Comments on both the Posts and Pages but the Artisteer created page.php has no code to allow for Comments. Anyone got the code and can tell me where I need to insert it?

Thanx.
 
Margaret

Posted: 5/11/2009
Quote message 

I am having this problem too.

Does anyone know if it is possible to enable the basic Wordpress functionality of having comments on blog pages?


 
Kenneth

Posted: 5/12/2009
Quote message 

I have the same problem too.

Can someone take a look in page.php and fix the problem ?
 
Kenneth

Posted: 5/12/2009
Quote message 

I found the solution to the problem:

1. Open page.php file

2. Scroll to the bottom and locate:
<?php endwhile; endif; ?>


3. Right AFTER that, add the following on a new line:
<?php comments_template(); ?>


4. The to lines should look like this:

</DIV>
<?php endwhile; endif; ?>
<?php comments_template(); ?>
</DIV>


Yes, its between two closing DIV

This showed the comments on all my PAGEs
 
Kenneth

Posted: 5/12/2009
Quote message 

By default the "Gravatar" icon will show. You can change this by opening the function.php.

Take a look on how to here:
http://buildinternet.com/2009/02/how-to-change-the-default-gravatar-in-wordpress/

 
jean

Posted: 5/13/2009
Quote message 

Quote Kenneth:

By default the "Gravatar" icon will show. You can change this by opening the function.php.

Take a look on how to here:
http://buildinternet.com/2009/02/how-to-change-the-default-gravatar-in-wordpress/



You can control the icon from the Discussion menu item in your admin panel (2.7.1)

Normally, comments appear when viewing a single post. If you look at single.php, the code that you are suggesting adding to page.php is already there. I don't think folks should add this code to page.php. If comments are not showing up, they need to check their admin panel discussion settings first.
 
another jean

Posted: 5/16/2009
Quote message 

Quote jean:

Quote Kenneth:

By default the "Gravatar" icon will show. You can change this by opening the function.php.

Take a look on how to here:
http://buildinternet.com/2009/02/how-to-change-the-default-gravatar-in-wordpress/



You can control the icon from the Discussion menu item in your admin panel (2.7.1)

Normally, comments appear when viewing a single post. If you look at single.php, the code that you are suggesting adding to page.php is already there. I don't think folks should add this code to page.php. If comments are not showing up, they need to check their admin panel discussion settings first.


My page.php is missing <?php comments_template(); ?> so no matter what my settings in admin panel, comments will not appear on the page.
However, when I use the above suggestion, it doesn't help either.
When I look at single.php, mine says:
<?php endif; ?>
<?php comments_template(); ?>
<?php endwhile; ?>
<?php else: ?>
between the two </div>s so I tried adding
<?php endif; ?>
<?php comments_template(); ?>
<?php endwhile; ?>
but this broke the page.
I think that not having the option of putting comments in a page is a bug in Artisteer. I have the very latest release.

 
Linda

Posted: 6/11/2009
Quote message 

I am having the same issue, anyone have a fix yet?
I have the latest version of Artisteer, I did not have this problem with the first version.
 
Bob

Posted: 6/11/2009
Quote message 

Look for this in page.php... Near the bottom...
<?php endwhile; endif; ?>

add the comments template code right after it..

<?php endwhile; endif; ?>
<?php comments_template(); ?> --- it goes right here
</div>

This does work. I have done it many times.
-bob

 
Garry

Posted: 6/12/2009
Quote message 

Confirm if wordpress is allowed to accept comments
 
Jason Saggers

Posted: 9/12/2009
Quote message 

Quote Kenneth:

I found the solution to the problem:

1. Open page.php file

2. Scroll to the bottom and locate:
<?php endwhile; endif; ?>


3. Right AFTER that, add the following on a new line:
<?php comments_template(); ?>


4. The to lines should look like this:

</DIV>
<?php endwhile; endif; ?>
<?php comments_template(); ?>
</DIV>


Yes, its between two closing DIV

This showed the comments on all my PAGEs


This worked perfectly for me. is this something that Artisteer is missing or?
 
Garry

Posted: 9/12/2009
Quote message 

Most of Wordpress themes don't show comments on pages but show the comments only on posts.