• Resolved lbl5knts

    (@lbl5knts)


    Dear,

    the CiviCRM Integration works for many month with no issues. Global settings are still good, validation successfull.

    With WP 5.8.2 and Contact Form 7 Version 5.5.3 and Contact Form 7 CiviCRM integration version 1.8 the “enable CiviCRM processing” is disbled and i am not able to save the CiviCRM settings on the form settings.

    I filled out the form with “entity” and “action” and hit save. The site reloads, and the “enable CiviCRM processing” is disabled again, no information have been saved. Any hints for that behaviour?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author alexreiner

    (@alexreiner)

    Hi,

    just add this code:
    Plugins -> Plugin Editor -> select the plugin to edit: Contact Form 7 CiviCRM integration -> press Select -> scroll down in the opened file (contact-form-7-civi.php) -> add this code at the bottom of the file -> press Update File

    
    add_filter('wpcf7_pre_construct_contact_form_properties', 'before_init_form_properties');
    
    /** Hotfix WP 5.8 -> Init properties before database call **/
    function before_init_form_properties($properties) {
        $properties["civicrm"] = null;
        return $properties;
    }
    • This reply was modified 3 years, 2 months ago by alexreiner.
    Thread Starter lbl5knts

    (@lbl5knts)

    Thanks @alexreiner, this works.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘With WP 5.8.2 iam not able to save setting screen’ is closed to new replies.