• Resolved verbalcentaur41

    (@verbalcentaur41)


    I have problem with Forminator. On other sites everything is showing normal but on this site when I want to add standard Forminator Form is not looking normal. I didn’t edit anything on it.

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

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

    (@wpmudevsupport11)

    Hi @verbalcentaur41,

    I could notice a 500 error in the browser console for the following URL:
    /uploads/forminator/413_218e302/css/style-413.css

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

    And then access your site via FTP (or cPanel “File Manager” or similar tool) and go to /wp-content/uploads/forminator folder to check whether there is any such line present inside the .htaccess file or not:

    Options -ExecCGI

    If yes, please remove the above line from the code and then check whether the issue with style occurs again.

    Please do make sure to clear the cache once the changes are applied.

    Please check this link on how to implement the above code as a mu-plugins:
    https://wpmudev.com/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins

    Please do let us know how that goes.

    Kind Regards,

    Nithin

    Plugin Support Nithin – WPMU DEV Support

    (@wpmudevsupport11)

    Hi @verbalcentaur41,

    Since we haven’t heard from you for a while. I’ll mark this thread as resolved for now. Please feel free to re-open the thread if you need further assistance.

    Kind Regards
    Nithin

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Forminator CSS is somehow broken’ is closed to new replies.