Troubleshooting
Solutions for common setup and theme configuration issues.
I get the error: 'A template file called index.hbs and post.hbs must be present'This error usually means you uploaded the full archive downloaded from ThemeForest instead of the theme ZIP file.
After downloading the ThemeForest archive, unzip it first. On Windows, right-click the archive and select 'Extract All'. Inside the extracted folder, you will find the actual theme ZIP file, for example theme-name.zip.
Use the same ZIP filename for each update, for example theme-name.zip. This helps Ghost keep the existing Design & branding settings for that theme.
Ghost stores Design & branding settings by uploaded archive name. If you uploadtheme-v1.zipand latertheme-v2.zip, Ghost treats them as separate themes and the settings will not carry over.
This applies only when updating the same theme. Different themes can have different custom settings.
I get a 400 error: 'Missing template members/signin.hbs for route /signin/'This usually means a previous theme used a customroutes.yamlfile. Resetroutes.yamlto the default Ghost routes to resolve it.
routes:
collections:
/:
permalink: /{slug}/
template: index
taxonomies:
tag: /tag/{slug}/
author: /author/{slug}/
- Go to the 'Labs' settings in the Ghost Admin to find the 'Routes' section.
- Upload the
routes.yamlfile with these settings:
routes:
collections:
/:
permalink: /{slug}/
filter: featured:false
template: index
/featured/:
permalink: /featured/{slug}/
filter: featured:true
template: index
taxonomies:
tag: /tag/{slug}/
author: /author/{slug}/
/featured/ collection for posts marked as featured and removes those posts from the main collection.The theme uses local storage for features such as 'Pinned area' and 'Post of the day', and session storage for the Back button. No personally identifying user data is transmitted.
Because the data stored in local storage and session storage is used solely for technical purposes and does not identify users, it is considered 'necessary for the provision of the service'.
For transparency, mention this local and session storage use in your Privacy Policy or Cookie Policy.