You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 19, 2021. It is now read-only.
Trying to create a site using Ghost 1.17.2 and getting errors:
Fatal Errors
(Must-fix to activate theme)
Replace the {{image}} helper with {{img_url feature_image}} or {{img_url profile_image}}
The {{image}} helper was replaced with {{img_url}}.
Depending on the context of the {{img_url}} helper you would need to use e. g.
{{#post}}
{{img_url feature_image}}
{{/post}}
to render the feature image of the blog post.
Find more information about the {{img_url}} helper here and read more about Ghost's usage of contexts here.
Affected files:
author.hbs: Please remove or replace {{image}} from this template
partials/post-single.hbs: Please remove or replace {{image}} from this template
Replace the {{#if image}} helper with {{#if feature_image}}, or {{#if profile_image}}
The image attribute was replaced with feature_image and profile_image.
Depending on the context you will need to replace it like this:
{{#author}}
{{#if profile_image}}
{{profile_image}}
{{/if}}
{{/author}}
See the object attributes of author here.
{{#post}}
{{#if feature_image}}
{{feature_image}}
{{/if}}
{{/post}}
See the object attributes of post here.
{{#tag}}
{{#if feature_image}}
{{feature_image}}
{{/if}}
{{/tag}}
See the object attributes of tags here.
Affected files:
partials/post-single.hbs: Please remove or replace {{#if image}} from this template
The text was updated successfully, but these errors were encountered:
Trying to create a site using Ghost 1.17.2 and getting errors:
![image](https://user-images.githubusercontent.com/2633542/32806767-b5c96bd4-c95b-11e7-95bc-5988d7514f40.png)
The text was updated successfully, but these errors were encountered: