stemtj
Forum Replies Created
-
It’s great that you guys solved it, but it would be amazing if you wrote a solution here. I am facing the same issue.
For people who are still facing this problem. There’s a workaround to make a Single Opt In into confirmed signup. Just head to plugin folder/job/es-subscribe.php and edit a line from:
if( $data['es_c_optinoption'] == "Double Opt In" ) { $form['es_email_status'] = "Unconfirmed"; } else { $form['es_email_status'] = "Single Opt In"; }To:
if( $data['es_c_optinoption'] == "Double Opt In" ) { $form['es_email_status'] = "Unconfirmed"; } else { $form['es_email_status'] = "Confirmed"; }This way the new user will be automatically confirmed in Single Opt option.
Best,
Zizen
Unfortunately for my purposes widget doesn’t fit. That is why I went for php shortcode.
Thanks for looking into it.
Best
Glad I could help you 🙂
I had a similar issue with endless loading, but just with registration. I believe developer had forgotten to edit or change 1 line in the file es-widget-page.js
Go onto line 187 of that file, next you will see this line:
document.getElementById("es_msg").innerHTML = es_widget_page_notices.es_email_exists;Change here “es_msg” to “es_msg_pg”
I hope it helps! 🙂
I’ve faced the same problem and solved it by editing file in widget/es-widget-page.js
I believe on line 163 you need to input 3 symbols to get rid of that error. If you look at the line there’s “es_msg”, it should be “es_msg_pg”.
I hope it helps!
document.getElementById("es_msg").innerHTML = es_widget_page_notices.es_success_message;