- This topic has 4 replies, 2 voices, and was last updated 10 years, 3 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Legacy Theme Support › Blog page issues: Post titles, comments and "read more" links not appearing
Tagged: blog, no comments, no titles, posts
A little more info: Now looking at the functions.php, I see this code which probably affects the titles I’m missing:
<code>//REMOVE PAGE TITLE
add_action(‘get_header’, ‘child_remove_page_titles’);
function child_remove_page_titles() {
$pages=array();
if (is_page($pages)) {
remove_action(‘genesis_post_title’, ‘genesis_do_post_title’);
}
}</code>
I think I also had removed the post info when I wanted certain posts not to show it. How would I show the post info on other posts?
thanks again.
Your titles aren’t showing up because you’ve added code to remove them from your posts.
For the comments, you probably just need to turn them on. You can do this by going to your Genesis Theme Settings page and look under “Comments and Trackbacks” and check the box to enable them……Unless you’ve added code to remove them, if so, then just remove or edit the code.
Wes,
Thank you, I realize that now. I”m not a coder so I must’ve asked advice on this and just copied and pasted when I first created the site. Actually i have adjusted those “comments and trackbacks” settings but they’re still not showing up on the blog page.
Could you please advise as to how I’d go about keeping the titles and meta info off certain category posts, and put it back on for a different category of post?
thanks again.
Robin
You could try this plugin – http://wordpress.org/extend/plugins/genesis-title-toggle/
…Also, if you do a Google Search you’ll see a lot of tutorials out there on how to do this as well.