Add the following code to your WordPress theme’s function.php file, or a functionality plugin to allow Shortcodes in Widgets and Excerpts
/** Allow shortcodes in the excerpt */
add_filter('the_excerpt', 'do_shortcode');
/** Allow shortcode in text widgets */
add_filter('widget_text', 'do_shortcode');
Share Your Two Cents