Hi, Just change the code. Look for
$widget_text = empty($instance['form']) ? '[contact-form 1 "Contact form 1"]' : stripslashes($instance['form']);
echo apply_filters('widget_text', $widget_text);
en change/modify to
$widget_text = empty($instance['form']) ? '[contact-form 1 "Contact form 1"]' : stripslashes($instance['form']);
$my_shortcode = do_shortcode( $widget_text );
echo apply_filters('widget_text', $my_shortcode);
-
This reply was modified 6 years, 3 months ago by
7strel.