I’m having the same problem
Hey @argusnet and @digigrowth
Thanks for reaching out and sorry for the inconvenience.
In WPForms v1.6.8, we decreased memory footprint by removing the code that shouldn’t be loaded for Lite users, but it looks like we missed some places which is causing the loading issue while adding a new connection, this issue should be fixed in the upcoming release.
To fix this now, please make the following changes in the file /wp-content/plugins/wpforms-lite/includes/providers/class-base.php
// \WPForms_Provider::output_conditionals() on line 348
if ( empty( $connection['conditional_logic'] ) || empty( $connection['conditionals'] ) || ! function_exists( 'wpforms_conditional_logic' ) ) {
return true;
}
// \WPForms_Provider::output_conditionals() on line 953
if ( empty( $connection['account_id'] ) || ! function_exists( 'wpforms_conditional_logic' ) ) {
return '';
}
I apologize for the trouble here but I hope this helps!
Thanks!