Hello,
i use the elementor gallery widget to show the listing gallery on single listings. Unfortunately jpg’s doesn’t show there, so i can only insert png’s…
Do you have an idea how to solve this?
Question is closed for new answers.
Jonas Eichmann Selected answer as best 19/03/2021
SOLVED: Just insert the following code into your functions.php to disable the new wordpress core feature that hides large images at front end.
<code>add_filter( 'big_image_size_threshold', '__return_false' );</code>
Source: https://make.wordpress.org/core/2019/10/09/introducing-handling-of-big-images-in-wordpress-5-3/
Jonas Eichmann Selected answer as best 19/03/2021