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 Aug 21, 2024. It is now read-only.
An error occurs when mapping a feed.
The {% for %} tag’s support for the if param is removed in Craft4. Use |filter instead.
Code needs to be changed in templates/_feedme/map.html.
Line 68
{% for field in fields if field and craft.feedme.fieldCanBeUniqueId(field) %}
Needs to be
{% for field in fields|filter(field => field and craft.feedme.fieldCanBeUniqueId(field)) -%}
The text was updated successfully, but these errors were encountered: