Enable Shortcodes in Text Widgets
Shortcodes are extremely powerful in WordPress and being able to use them in widgets is helpful. This snippet will allow you to add shortcodes in a text widget and have them executed.
// shortcode in widgets
if ( !is_admin() ){
add_filter('widget_text', 'do_shortcode', 11);
}