Instagram widget in Elementor – Carousel not working
-
Instagram Carousel Posts aren’t shown in the widget. Only the single posts and reels are shown.
Hello,
In this case, is there any chance that you could give me access to the dashboard area so I can have a look at the settings on your website, please?
Kind Regards
Try to add the following PHP code snippet to the child theme functions.php file to fix this
add_action( 'image_sideload_extensions', function( $allowed_extensions ) {
$allowed_extensions[] = 'heic';
return $allowed_extensions;
});