Wishlist Member
AppPresser works with WishList Member, but if you have a login redirect you may need to disable it.
If you really need the login redirect on your website, you can add this code to a plugin to fix the app login:
if( $_POST['password'] && empty( $_POST['wlm_redirect_to'] ) ) { add_filter( 'wishlistmember_login_redirect_override', function( $value ) { return true; } ); }