Ikenna Anabor
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] WPCF7 integration with BrevoHello, I also get the same problem trying to integrate CF7 with Brevo. I intend to use Brevo in such a way that contact updates are essential.
I used the following code in WPCode
add_filter(
‘wpcf7_sendinblue_contact_parameters’,
function($params) {
$params[‘updateEnabled’] = true;
return $params;
}
);It keeps giving me the following error.
Use of undefined constant ‘wpcf7_sendinblue_contact_parameters’ - assumed '‘wpcf7_sendinblue_contact_parameters’' (this will throw an Error in a future version of PHP)
This is the form I used to test the integration. https://ciaps.org/personal-statement-form-test/ and it still doesn’t update records.
PS. Wouldn’t all this be easier if the CF7 team just set the updateEnabled parameter to be “true” by default?
- This reply was modified 11 months ago by Ikenna Anabor.
- This reply was modified 11 months ago by Ikenna Anabor.
Forum: Plugins
In reply to: [Contact Form 7] Groups not showingFinally figured it out.
<div class="clearfix"> <div id="left"> </div> <div id="right"> </div> </div>
I was using the div classes to put the form in two columns but after removing them, the conditional fields now work. I have no idea why though
Forum: Fixing WordPress
In reply to: WordPress keeps omitting the word “and”@woptimize No need. I just figured it out. I installed “Remove Footer Credits” plugin and set it to remove words in the footer which included the word “and”. I’ve removed “and” from the list and it’s OK now. But now I’m wondering why “and” was removed from the entire site instead of just the footer.
Thanks for the suggestion though. It would have definitely fixed it.
- This reply was modified 6 years, 8 months ago by Ikenna Anabor.