Apparently your theme has a single.php; does that include:
<?php comments_template(); ?>
somewhere in The Loop?
Thread Starter
Tilex
(@tilex)
Yup, it seems to be there…
You can view single.php at http://blog.alexlimoges.com/single.txt
Thank you for your suggestion Kafkaesqui 😉
I’m not seeing that template reflected in your single post pages. Rather, it looks like all query types may be using index.php.
Thread Starter
Tilex
(@tilex)
would there be a way then to include <?php comments_template(); ?> in my index.php somewhere? I dunno where though, but it seems that my theme calls everything from that file…
Just place it in The Loop where it seems appropriate. Look for <?php trackback_rdf(); ?> and try inserting it right after this.
Note that comments_template() is “query aware”, which means it will only display comments and the comment form on a single post or Page. So placing it in index.php is not an issue.
Thread Starter
Tilex
(@tilex)
OK good thanx! It works, I’ve a box waiting for me to type in a comment 😀
However, the box is very big and it kinda go off the borders…any suggestion to correct that as well?
CSS!
Look for this in your style.css:
#commentform textarea {
width: 80%;
}
and change it to:
textarea#comment {
width: 80%;
}
You can similarly edit or add properties for the rest of the edit form id’s, classes and html elements.
Thread Starter
Tilex
(@tilex)
hum…that didn’t seem to work…it still is off..
Thanks so much for your help btw!
Thread Starter
Tilex
(@tilex)
and oh, I’ve just tried adding a comment and when I click on the “send comments” it doesn’t do anything…
*Which* style.css are you editing? When I access the source for your site’s stylehseet, it’s at:
/themes/fleur/style.css
and not the typical
/wp-content/themes/fleur/style.css
Thread Starter
Tilex
(@tilex)
yeah I know, it’s pretty weird…I gets it at theme/fleur/style.css…which is the one I’m editing…
Note that your comments_template() seems to reside within the HTML comments surrounding <?php trackback_rdf(); ?>. Make sure it looks like this:
<!--
<?php trackback_rdf(); ?>
//-->
<?php comments_template(); ?>
Thread Starter
Tilex
(@tilex)
oh wow now it works perfect!!!!
thank you so much!!