Hi,
I assume the shortcode is output by your theme in an excerpt field, where shortcodes are not rendered by default. Please ask your theme developer for assistance if possible…
You could also try if adding the following to the end of your themeยดs function.php solves your issue:
add_filter(‘the_excerpt’, ‘do_shortcode’);
add_filter(‘widget_text’, ‘do_shortcode’);
best,
Robert