• Resolved jusam

    (@jusam)


    I’m currently building a multistep form with forminator and am facing problems with styling the form. The css styling doesn’t load and is causing the following error in the console:

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

    I tried a lot, but cannot figure out what causes this problem.

    Thanks in advance for your help!

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Nithin – WPMU DEV Support

    (@wpmudevsupport11)

    Hi @jusam,

    Such a behaviour could happen due to the server side configs, could you please add the following code as a mu-plugins:

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

    You can find the following doc helpful on how to apply the above code as a mu-plugins.

    https://wpmudev.com/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins

    Once done, access your site via FTP (or cPanel “File Manager” or similar tool) and go to /wp-content/uploads/forminator folder and remove only the following line inside the .htaccess file:

    Options -ExecCGI

    Please do make sure to clear the cache once the changes are applied and check how that goes.

    Please do check and see whether the above helps.

    Best Regards,

    Nithin

    Thread Starter jusam

    (@jusam)

    Thank you very much! That solved the Problem!

    Now I have 2 more problems that I hope you could help me with.

    1. I am using checkboxes and radios with images. I would like to fill the whole width of the container and make them even size (display:flex ?) but that seems to just not work properly!

    2. Is ist possible to place fields in columns? For example I would like to have the email field next to the name field. As for now every field is fullwidth. Is there a way to fix this within the plugin or is it only possible with custom css?

    Thanks in advance!!

    Plugin Support Nithin – WPMU DEV Support

    (@wpmudevsupport11)

    Hi @jusam,

    1. I am using checkboxes and radios with images. I would like to fill the whole width of the container and make them even size (display:flex ?) but that seems to just not work properly!

    You should find the option to add height & width for the images under Appearance tab > Layout > Radio/Checkbox Image Size, switching to “Custom” and adding the custom size should help to display the image according to your need.

    Other than that, it’ll require custom CSS to make changes to .forminator-radio-image span class.

    2. Is ist possible to place fields in columns? For example I would like to have the email field next to the name field. As for now every field is fullwidth. Is there a way to fix this within the plugin or is it only possible with custom css?

    You could drag and drop the fields next to each other within a row via the WP Dashboard. However, if you are looking for more advanced alignments on how to display the fields, then it’ll require custom css.

    Regards,

    Nithin

    Plugin Support Amin – WPMU DEV Support

    (@wpmudev-support2)

    Hello @jusam

    We haven’t heard from you in some time, so I will mark this thread as resolved. If you have any more questions or need further assistance, please let us know!

    Kind Regards,
    Amin

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Form-CSS not loading (404)’ is closed to new replies.