Improved liquid array/hash output, slight page routing improvement
Last edit:
July 22, 2019
IMPROVED
- page slug can now consist of any components: Previously the page slug had to be maximum three levels deep. The improvement allows you to provide any slug you want, for example
/one/two/three/four/five. However, please note that if you define page/one/two/three/fouryou won't be able to access/one/two/three/four/five- template slugs still work only for three-level deep slugs. - {{ form }} output improved: The
formvariable will not include magical keys anymore, the output now corresponds to thefieldsdefined in form configuration. {{ hash }}and{{ array }}will render proper JSON: You don't need to use thejsonfilter.{{ users | json }}will become{{ users }}. The change is backward compatible, meaning the extra| jsonis just unnecessary but does not break anything.- added filter by
searchablefield toadmin_pagesgraphql endpoint: With a new filter you can exclude some pages from being shown in search results.