Problem with shortcode carousel

I want to add a logo carousel in the services section on the front page and on one of the followup pages of my website.

To achieve this I have to add the shortcode “[logo-carousel id=default]”

On the followup page, the shortcode is correctly replaced by the html-code to generate the logo carousel.
In the services section, I put a text widget and in the text widget I type the shortcode. But this shortcode is not replaced by the html code to show the logo carousel.

What am I doing wrong?

Regards,

Hubert

Hello,

You will need to create a child theme, then in that child theme create functions.php and add the following code :

// Enable shortcodes in text widgets
add_filter('widget_text','do_shortcode');