I have the same problem. Please HELP!
Thank you in advance.
We’re getting exact same error message, but only from certain pages. Some pages work as expected, so it’s a puzzler.
Same issue here. Please help!
I am also experiencing the same error…. Any status update Katz?
Thank you.
Same problem here. Looking forward to assistance. Thanks so much!
What pages trigger the error?
Every page…only on submit.
Happening here on submit: http://www.iecpvision.com/
Catchable fatal error: Argument 1 passed to Ctct\Components\Contacts\Contact::create() must be an array, null given, called in /var/www/vhosts/domain.com/httpdocs/wp-content/plugins/constant-contact-api/vendor/constantcontact/constantcontact/src/Ctct/Services/ContactService.php on line 63 and defined in /var/www/vhosts/domain.com/httpdocs/wp-content/plugins/constant-contact-api/vendor/constantcontact/constantcontact/src/Ctct/Components/Contacts/Contact.php on line 153
Recieving same error as Pikes Peak Brewing.
I’ve got WP core and all themes up to date as of today.
I’m getting the same error as badke. Interestingly, it only happens when I’m logged into my site. when i’m not, it submits.
I’m getting the same error on every page whether I’m logged in or not. WordPress and plugins are up to date. Any solutions out there?
Same error here… any ideas?
I think I have it fixed.
Change line 153 in /wp-content/plugins/constant-contact-api/vendor/constantcontact/constantcontact/src/Ctct/Services/ContactService.php from:
public static function create(array $props)
…to…
public static function create(array $props = null)
And change line 17 in /wp-content/plugins/constant-contact-api/vendor/constantcontact/constantcontact/src/Ctct/Components/Component.php
protected static function getValue(array $array, $item, $default = null)
…to…
protected static function getValue(array $array = null, $item, $default = null)