Hey,
I found the thread about adding the additional headline to the front page if it shall not be the slider pag: http://www.kriesi.at/support/topic/how-do-you-add-the-additional-headline-to-the-front-page
I've discoverd that some of the code now already is included in the header.php:
if(is_front_page()){
$headline = get_post_meta($post->ID, "_headline", true);
if($headline != "") $headline = '<h2>'.$headline.'</h2>';
}
Therefore I only have to add
if($headline != "") echo $headline;
"where you'd like the Headline to display in index.php" - as it is written. But I simply don't know where to put it exactly. I tried a lot of positions but the headline never appeared on the front page (which is my blog page). Could you please help me? :) Thank you in advance!














