Private: Home › Forums › WordPress Themes › Elvyre – Retina Ready WordPress Theme › Title Background Image › Reply To: Title Background Image
September 23, 2014 at 7:02 pm
#528
Participant
Hello.
To display page title on home page, go to your wp-content/themes/elvyre/ and find page.php. In page.php, around 23rd line, you will see the code:
if (have_posts()) : the_post();
if (!is_front_page()) {
if ($hide_page_title == '0') {
get_template_part('section', 'title');
}
}
replace this block of code with the following:
if (have_posts()) : the_post();
if ($hide_page_title == '0') {
get_template_part('section', 'title');
}
Or, replace the page.php file with the one attached in this post.
Robert