Template: (after looping through my collection of subpages) <?= $item->image()->crop(500)->url() ?>
After replacing a product image with a new image in the product detail panel page the changes will not be passed through my product overview panel and my template at the front.
The new image is only visible in my product detail page.
This new image will only be visible on all places when I delete the old one from the folder.
It’s not a bug. You are using a reserved name for your field, so what this line does is fetch the first image from the folder instead of fetching the image stored in the field. Additionally, you have to convert the field value to a file:
Ah yes! Didn’t think about that actually. It is working now.
I renamed my ‘image’ field to avoid conflicts in the future.
Because there were more images available to select per product, my products overview in the panel was showing the first image in the card. not the selected one.
Tried to fix that with my field still calling ‘image’ but that didn’t work. Now with the new fieldname it is working like a charm!