• Resolved envisionmarketingweb

    (@envisionmarketingweb)


    We have had multiple issues since the most recent update:

    • Any previous custom style settings are no longer appearing/working
    • The select dropdown menu does not have a background and will not update with changes in the Appearance settings in the back end
    • There have been instances where submissions will not go through
    • Radio buttons are not selectable on any of our sites’ forminator forms

    We have a large number of forminator forms and it would be extremely helpful to get a fix or patch update soon.

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

    (@wpmudevsupport12)

    Hi @envisionmarketingweb

    Sorry to hear you are having this problem.

    There are two known situations for style issues, the first one is when site is loading on HTTPS but configured in WordPress > Settings HTTP::// then browser will block the request.

    Can you double check it?

    The second one is a known issue and we are working to fix, a temporary solution is by adding this mu-plugin:

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

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

    then edit the file:

    /uploads/forminator/.htaccess

    And remove the line

    Options -ExecCGI

    Let us know the result you got.
    Best Regards
    Patrick Freitas

    Plugin Support Amin – WPMU DEV Support

    (@wpmudev-support2)

    Hello @envisionmarketingweb ,

    We haven’t heard from you for over 2 weeks now, so it looks like you no longer need our assistance.

    Feel free to re-open this topic if needed.

    Kind regards
    Kasia

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Multiple Styling Issues’ is closed to new replies.