Hi!
I solved this problem myself.
In the widget code, the place where the shortcode does not work is called like this: <div class="slider-content"><?php the_excerpt(); ?></div>
that’s why I added the line add_filter( 'the_excerpt', 'do_shortcode');
to functions.php
and it worked!