Hi there,
I can’t query a collection in a pages field.
/site/collections/products.php :
<?php
return function($site) {
return $site->index()->template('product')
}
site.yml :
fields:
products:
label: Articles
type: pages
query: kirby.collection('products')
I don’t get any error, just an empty field :
Other attempts that didn’t work,
site.yml :
fields:
products:
label: Articles
type: pages
query: site.index.template('product')
fields:
products:
label: Articles
type: pages
query: site.index.filterBy('template', 'product')
/site/collections/products.php (and querying the collection in the field) :
<?php
return function($site) {
return $site->index()->filterBy('template', 'product')
}
What am I doing wrong ?
Thank you for your help.