• Resolved piranhaost

    (@piranhaost)


    Hello, I’m currently designing website using elementor in combination with blocksy theme. Used your awesome forminator plugin to create contact form but semes like the radio buttons I created have no active state. Could you guys have a look what needs to be done to make them active again? Regards Sven

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Zafer – WPMU DEV Support

    (@wpmudevsupport15)

    Hi @piranhaost,

    I hope you are doing well today!

    Please share an export of the form with us, so that we can check further.

    You can find more info on how to export the form here : https://wpmudev.com/docs/wpmu-dev-plugins/forminator/#import-export

    After exporting, please share the file contents with us using the free services such as Google Drive, https://pastebin.com or https://justpaste.it

    Please always make sure to use such services to share the code and don’t post the code here directly as it will most likely be unusable.

    Kind regards,
    Zafer

    Thread Starter piranhaost

    (@piranhaost)

    Hi Zafer,

    Here is link to exported form https://drive.google.com/file/d/1oyccKls1GDy4Ua3mKl1ploVpQHl84c_n/view?usp=sharing

    Thanks for the effort

    Plugin Support Nebu John – WPMU DEV Support

    (@wpmudevsupport14)

    Hi @piranhaost,

    To investigate the issue further, I imported the form to a test website at my end but was unable to replicate the issue. Here is a screenshot from the end for your reference: https://ibb.co/4WXX7f3

    Further checking the issue on your website I noticed the following error reported on the Formiantor CSS file.

    Failed to load resource: the server responded with a status of 500 ()

    Screenshot: https://ibb.co/QQptTfS

    We have noticed similar issues and observed that after removing the “Options -ExecCGI” rule from the /uploads/forminator/.htaccess file, the CSS starts loading. Could you please check if it works for you too?

    Additionally, please add the following snippet as a must-use (mu) plugin to prevent the rule from being added in the future. You can create a must-use plugin by placing it in the ‘wp-content/mu-plugins’ folder on your site. For guidance, refer to this link: https://wpmudev.com/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins. Then, add the following code to the plugin’s PHP file:

    <?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;
    }

    Please test the provided solution in a development or staging environment before applying it to your live website. If you need any further clarification, feel free to reach out—we’re happy to assist.

    Kind Regards,
    Nebu John

    Thread Starter piranhaost

    (@piranhaost)

    Thanks guys,

    removing the Options -ExecCGI from .htaccess did the trick.

    You guys are a lifesaver.

    Plugin Support Laura – WPMU DEV Support

    (@wpmudevsupport3)

    Hi @piranhaost,

    Glad to hear the issue has been solved, I’ll go and mark this thread as resolved. Note that you can still reply on this topic.

    If you have any additional questions or require further help, please let us know!

    Best regards,
    Laura

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.