when I visit my homepage, I can see the content from the ‘Dubai Safari Tours’ page, but the page title is missing.
That’s a feature of your theme: the theme goes out of its way to HIDE the title on the homepage with CSS.
That should not come as a surprise, as the theme has “Blog” in its name so it appears the author intended the homepage to be set up as a blog, listing the latest posts.
There’s even a message on the theme’s documentation page (in red and bold for emphasis!) that the setting in APPEARANCE => READING => YOUR HOMEPAGE DISPLAYS AS must be set to “Your latest posts”.
So… it’s a feature (of your theme) and not a bug 😀
How can I make the title appear on the homepage? (though if I see the code the H1 tag is there)
To force the display of the homepage title, copy and paste the following custom CSS code into APPEARANCE => CUSTOMIZE => ADDITIONAL CSS.
body.home .page-title {
display: block;
}Good luck!
