My guess is that there are a few templates provided that are not actually registered, or registering, within the template.
Option 1:
Methodically collect all of the content on your Home template into a group, then turn that group into a reusable block. Next, go build a new template (by going to any page, looking at the Template drop-down we are discussing, clicking the little New link under the pop-up of template names, giving a name to a new template, then going to the Template Editor right away).
Finally, select this new template in the template editor and add that reusable block you made to essentially copy all of your hard work into a new template that will show up (because you built it in WP inside this particluar template).
Option 2:
Look for this code in the JSON file and register the Home template that exists there so that WP knows to add it to the pop-up of template names. I have never done this. It is a theory:
"customTemplates": [
{
"name": "blank",
"title": "Blank",
"postTypes": [
"page",
"post"
]
},
{
"name": "page-large-header",
"title": "Page (Large Header)",
"postTypes": [
"page"
]
},
{
"name": "single-no-separators",
"title": "Single Post (No Separators)",
"postTypes": [
"post"
]
},
{
"name": "page-no-separators",
"title": "Page (No Separators)",
"postTypes": [
"page"
]
Is this helping?
-
This reply was modified 2 years, 10 months ago by
saturn3.