Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Dmytro – WPMU DEV Support

    (@wpmudevsupport16)

    Hello Tamara,

    Yes, this looks like a similar issue with the CSS files.

    If the server errors persists, could you please try to do the following:

    – upload the same snippet to /wp-content/mu-plugins/ directory:

    <?php
    add_filter( 'forminator_upload_root_htaccess_rules', 'wpmudev_remove_htaccess_rules', 10, 1 );
    function wpmudev_remove_htaccess_rules( $rules ) {
    	if ( ! empty( $rules ) ) {
    		$rules = str_replace('Options -ExecCGI', '', $rules);
    	}
    	return $rules;
    }

    – remove the existing .htaccess file from /wp-content/uploads/forminator/ directory;

    – make a small change in the form, and update it in Forminator by pressing the “Update” button. This should make Forminator generate a new updated .htaccess file.

    – refresh the page, and check the form on the frontend.

    Hope this helps. Let us know if there’s still any issue.

    Best Regards,
    Dmytro

    Thread Starter tamarabelt

    (@tamarabelt)

    It worked! Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Forminator radio buttons don’t work with Divi’ is closed to new replies.