Is there a way to move the categories and comments to the bottom of each post? I would also like it to read "leave a comment" instead of "5 comments". Is there a way to change that as well?
Thanks!
Is there a way to move the categories and comments to the bottom of each post? I would also like it to read "leave a comment" instead of "5 comments". Is there a way to change that as well?
Thanks!
I guess you are talking about the post meta information. you can change the code to move it below the bf_excerpts in index.php or some other template. This is the code to move:
<?php meta($postType); ?>
It is possible to enable a "leave a comment" link setting in the theme settings (Show Post a Comment Link). If you want the change the meta information, edit the meta function in the theme-functions.php file (in library/functions).
Thank you so much, I got it moved to the bottom of each post!
The other thing I was asking about changing is on each post where it says "no comments" or "4 comments".... can I make that text say "leave a comment" not matter if there are comments or not. Does that make sense? I just want to make it way obvious to people on how to leave a comment. ;)
as I said there is a "Leave a comment" link already, you just have to enable it. It is called "Show Post a Comment Link" in the theme settings. The text can be changed in the theme-functions.php file (same for the num comments label, just search for it). You can add and remove stuff from the meta section, so if you want to remove the comment text, you can do that in the "Post Meta Information" section in the theme settings.
You must log in to post.