Hello, I am having trouble with a menu using tags. I want to filter all my website images based on tags and this is working the problem I have is that the tags of the images are queried from the site.yml and on my homepage I have a menu with these tags but if I delete a Tag from the site this still shows up on my homepage menu because this menu is showing all the tags on the images instead of showing only the tags on the site.
I added to my site.yml a tags field:
fields:
tags:
label: Tags
type: tags
And then on my images yml I added this:
tags:
label: Filters
type: multiselect
options: query
query: site.tags.split
Then on my home template I have the following:
<div class="tags">
<ul>
<li>Tags:</li>
<?php foreach ($tags as $tag): ?>
<li>
<a href="<?= url('projects', ['params' => ['tag' => $tag]]) ?>">
<?= html($tag)?>
</a>
</li>
<?php endforeach ?>
</ul>
</div>
and on my home controller:
<?php
return function ($site, $page) {
$projects = page('projects')->children()->listed();
$images = $projects->images();
$tags = $images->pluck('tags', ',', true);
if ($tag = param('tag')) {
$images = $images->filterBy('tags', $tag, ',');
}
return compact('projects', 'images', 'tags', 'tag');
};
I think the problem is on my controller or template because I am pushing the tags from the images where I should actually be pushing the tags from the site and I tried to change it but without success. can someone please point me in the right direction?
What I need is if I delete a tag on the site panel this tag shouldn’t be visible on the homepage menu even if an image is still using this tag because somehow if I delete something on the site the multiselect doesn’t delete this option if it was already in use.