The problem is most probably Form Maker shortcode function, which is conflicting with your theme. Please open form-maker/form-maker.php file and find the following code snippets:
/* $new_shortcode = ‘[Form’;
foreach ($attrs as $key=>$value) {
$new_shortcode .= ‘ ‘ . $key . ‘=”‘ . $value . ‘”‘;
}
$new_shortcode .= ‘]’;
return $new_shortcode; */
and
//add_filter(‘the_content’, ‘Form_maker_fornt_end_main’, 5000);
Uncomment them and the problem will be resolved. Please be careful not to leave any unexpected characters, otherwise the site will give PHP errors and won’t function properly.
Thank you.