yes ofcourse! no need to fix it right now. hoping to fix this last bug somewhere this week or next. no need to ruin you vacation. I’ll send you a private message
Alright it turnsout that the toggle field returns true
and false
as a string instead of a bool
working template for those interested
<?php foreach ($pages->template('post') as $item) : ?>
<?php if($item->toggle() == "true"): ?>
<figure class="masonry-item">
<?= $item->toggle() ?>
<a href="<?= $item->url() ?>">
<?= $item->images()->sortBy('sort', 'asc')->first()->resize(400) ?>
</a>
</figure>
<?php endif ?>
<?php endforeach ?>
</section>
$item->toggle()->toBool()
Hm, that doesn’t quite explain why it worked locally but not on the remote server. In any case, filtering instead of using the additional if statement should work with true
instead of "true"
as well. I’ll look into this.
It also doesn’t explain why your homepage template changes turned up on the OAOA page.
And in your first post you even used toBool()
to turn the field value into a boolean…