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.