“MC4WP: Mailchimp for WordPress” plugin integration

Let’s see how to integrate the MC4WP: Mailchimp for WordPress plugin. Make sure that in the Interations menu “Registration Form” is active: Click on the “Registration Form” and check settings. Implicit should be set to “No”. Also select your list & edit the checkbox label. Important note, due to the […]

How to add the custom fields to the Emails

Add custom field to your form, for example with using this code https://gist.github.com/max-kk/4a3afc5e16bbeecfaf6314d66c7a28a2 Add custom tags to the user/admin email, like {{USER_PHONE}} Use the PHP filter to replace the tags https://www.skyverge.com/blog/add-custom-code-to-wordpress/

Password reset tweaks

How to change Hint text on the password reset page: https://wordpress.stackexchange.com/a/280719 Disable admin emails about password reset by the user: https://wordpress.stackexchange.com/a/266006

How to make modal unclosable

Since PRO version 1.97 you could add the following code: jQuery(document).on(‘lrm/can_close_modal’, function () { return false; }); How to add custom JS Additionally, you have to hide the close button .lrm-close-form { display: none; } How To Add Custom CSS To WordPress: 4 Methods For Different Needs