Theme.co Plugin: Email Form Error (on Registration)

Hello,

Based out of the website: https://www.ccss-cces.com, everytime a user registers for a new account via the “Login”>“Register” button, they receive the following error message. On our side, everything seems to work: they are subscribed to the mailing list (Mailchimp) and are added to the user list.

Any ideas on how to address the issue? I have limited experience in editing code, but can manage if guided.

Error Message:

Notice: Undefined index: form_id in /home1/lavoieco/public_html/ccsscces/wp-content/plugins/tco-email-forms/email-mailchimp/functions/provider.php on line 393

Warning: array_key_exists() expects parameter 2 to be array, boolean given in /home1/lavoieco/public_html/ccsscces/wp-content/plugins/tco-email-forms/email-mailchimp/functions/provider.php on line 395

Warning: Cannot modify header information - headers already sent by (output started at /home1/lavoieco/public_html/ccsscces/wp-content/plugins/tco-email-forms/email-mailchimp/functions/provider.php:393) in /home1/lavoieco/public_html/ccsscces/wp-includes/pluggable.php on line 1216

Hello @jpoirierlavoie,

Thanks for asking. :slight_smile:

This is just a PHP notice and warning messages. To resolve this, please disable the debug mode. You can do this by opening wp-config.php file and adding:

define( 'WP_DEBUG' , true ); just above /* That's all, stop editing! Happy blogging. */

For example:

define('WP_DEBUG', true);

/* That's all, stop editing! Happy blogging. */

When you revisit the page, you should no longer be seeing the message.

If you would like to learn basics of PHP, HTML and CSS. Please take a look at following resources.

http://php.net/manual/en/tutorial.php

I recommend you to watch following video that will help you to get started with CSS.

https://www.youtube.com/watch?v=MFR4WXiLzpc

Sometimes it can get a bit difficult to find out the right selector to be able to write the required CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.

https://developers.google.com/web/tools/chrome-devtools/css/

https://developers.google.com/web/tools/chrome-devtools/

https://www.youtube.com/watch?v=tP_kXBJWPhQ&t=200s

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.