Hi, on hidden link there is a view, containing links to related posts. The featured image is set as image. Sometimes the dimensions are not correct. What is the reason it sometimes goes wrong?
Hi,
Thank you for contacting us and I'd be happy to assist.
To troubleshoot this, I'll need to see how this view is set up in the admin area. Can you please share temporary admin login details?
Note: Your next reply will be private and making a complete backup copy is recommended before sharing the access details.
regards,
Waqar
Thank you for sharing the access details.
I noticed that in the view 'berichten in habits', this was the shortcode used for showing the featured image:
( ref: https://toolset.com/documentation/programmer-reference/views/views-shortcodes/#wpv-post-featured-image )
[wpv-post-featured-image size="custom" width="300px" height="200px" crop="true"]
I removed the unit 'px' from the shortcode attributes and the view is now showing properly cropped images:
[wpv-post-featured-image size="custom" width="300" height="200" crop="true"]
My issue is resolved now. Thank you!