



This plugin now requires Easy Digital Downloads 2.9 or greater.
Once activated, EDD Auto Register will create a WordPress user account for your customer at checkout, without the need for the customer to enter any additional information. This eliminates the need for the default EDD registration form, and drastically reduces the time it takes your customers to complete their purchase.
Guest checkout is required so the plugin overrides the setting. The registration form is hidden on checkout while the plugin is active.
There are various filters available for developers, see the FAQ tab for more information.
More extensions for Easy Digital Downloads
You can find more extensions (both free and commercial) from Easy Digital Downloads’ website
Long time user. Very excited about the recent updates!
By Daan from Daan.dev (DaanvandenBergh) on May 13, 2022
Works Well. Saves Time. Eliminates Confusion.
By Dave Warfel (davewarfel) on October 29, 2019
Its horrible security to send out passwords in cleartext.
By Nico (nico23) on February 20, 2018
<?php
namespace nextgenthemeswebsite;
add_filter( 'edd_auto_register_email_body', __NAMESPACE__ . '\edd_auto_register_email_body', 10, 4 );
function edd_auto_register_email_body( $default_email_body, $first_name, $username, $password ) {
// Email body
$out = __( "Dear", "edd-auto-register" ) . ' ' . $first_name . ",nn";
$out .= sprintf(
__( "Thanks for your purchase! A account with a random password has been created for you. Please <a href='%s'>follow the lost password procedure</a> to create a secure password for your account in case you want to ask a support question or access your downloads. (For security reasons passwords are not send out in cleartext)", "nextgenthemes-website" ),
wp_lostpassword_url()
) . "nn";
$out .= __( "Your Username:", "edd-auto-register" ) . ' ' . $username . "nn";
return $out;
}
Also using emails and usernames isn't exactly great either as you can guess them form the author slugs WP generates from them.
My Idea would be so simply use javascript on checkout to fill in a random generate password on checkout automatically. WP already has a function for this. And do not display the 2nd password confirm field at all, and maybe even autofill the username field with something based on the first/last name they enter.
To elaborate on my point that this is not the first time I notice this pattern from EDD:
They had ssl_verify => false
all over their code, I think its now changed it now changed some areas, or at least the is a option to verify your shops ssl. But with the software licensing extension those API calls and downloads are (or at lease were) totally unresponsively ignoring SSL altogether. Because some WP bug that was fixed like 10 years ago. Their entire attitude to simply ignore it because it may fail in some very rare cases is very bad.
It could lead to a chain reaction from a MITM attack on easydigitaldownloads.com that all extensions they ship to customers would ship from hackers sites instead with malicious code and given that many of their customers use EDD SL as well they could spread it from there. Because all the API calls simple ignor(ed) SSL! Not a security expert but at least I pay a little bit attention.
Also, and my guess is that this is very common in this industry. They do support via email and they expect you to send them passwords to your sites in cleartext!
Great Idea, bad execution.Works, I have one suggestion
By justinestrada on May 15, 2017
Great for checkout conversions
By Phil Derksen (pderksen) on May 1, 2017
Works perfectly
By Ruben Garcia (rubengc) on September 3, 2016
I wish there was an option to enable the introduction of the password directly from the form
Works well
By Mehrafsar (amdmehr) on September 3, 2016
It works like a charm.