My homepage is gone but header is still there

jjj reported that the issue has been solved in the comments to the original question: …In the mean time I did some trouble shooting with the plugins page and it turns out the ‘sitemap’ plugin may be the culprit. It works fine after I deactivated that plugin. I will definitely debug however. Thank you again

Change the environment for creating a WordPress page

You have to use classic-editor and a page builder for building the page. plugins->add new search name and install plugin and activate it. https://wordpress.org/plugins/classic-editor/ https://wordpress.org/plugins/search/page+builder/

How do you add a featured image to a page (not post)?

You can enable featured image for pages (and other post types) by using the line below. This goes in your functions.php file. add_theme_support( ‘post-thumbnails’, array( ‘post’, ‘page’ ) ); If you’re not comfortable with editing theme files then you should contact your theme developer. If featured images are not enabled by default in your theme … Read more

How do I count the number of pages a user has seen on my site, and force them to log in after a certain amount

Background Gating unauthenticated end-user’s ability to view site content based on the activity of such users is a difficult problem to solve reliably, owed to the design of web technologies as a whole. To the best of my knowledge, WordPress core provides no features which require any such functionality, and so there are no core … Read more