Home › Forums › WoodMart support forum › Instagram widget in Elementor – Carousel not working › Reply To: Instagram widget in Elementor – Carousel not working
July 5, 2023 at 2:47 pm
#479359
Artem Temos
Keymaster
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;
});