But it appears like this:
In addition, the button to change the page to dark mode doesn’t work. It seems like the page doesn’t load completely.
So I want to exlude this page or to encounter a solution for this problem.
Note: this happens to me in Opera and Chrome (mobile). In Edge for example, it doesn’t happen
add_action(‘pre_get_posts’, ‘filtreaza_interogarea_posturilor’);
function filtreaza_interogarea_posturilor($query) {
if (!is_admin() && !is_preview() && !$query->is_search && is_home()) {
$query->query_vars[‘post_type’] = array(‘post’, ‘produs’);
}
}
As a result, the menu on the front page is distorted, showing all “produs” type posts. Only on the front page.
]]>Is there a way to remove the page name from being displayed on front-end? Like it always shows “Home” on top of the page, which is perhaps fine on the first page, but even when we visit 3rd or 4th page, the “Home” text appears on every page which is annoying.
]]>I am using the theme: RIVERBANK and have made various adjustments.
Somewhere I put static main page but I don’t remember where that was. However, this static page is not displayed either. In Pages there is a ‘Home Page’ that is not called.
What do I have to adjust in the template: ‘Home’ so that the ‘Home’ is displayed on the website?
Thanks Klaus