Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#528
Robert Kavgić
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

Attachments:
You must be logged in to view attached files.