Plugin Pulse
← Pulse

EDD Auto Register

by Syed Balkhi · Uncategorized

Also makes 95 other plugins · 21.6M+ installs across the portfolio →

Automatically creates a WP user account at checkout, based on customer's email address.

⚠ Stale⚠ Likely abandoned
How scoring works →
54 Health · D
Maintenance 19/100
Rating quality 83/100
Support 70/100

54 health vs 56 average across 16,376 Uncategorized plugins

Removal-risk signals

28/100

Maintenance and integrity signals that tend to precede a WordPress.org removal. Not an official status, a heads-up to act.

  • Not actively maintained. No update in about 2 years.

Directory ranking optimization

How it's scored →

How well this listing is tuned to rank in WordPress.org search, on the factors an owner controls. Not popularity, optimization.

60 / 100

Room to improve

Biggest win: Update recency

Update recency 27/100
WP compatibility 53/100
Rating quality 67/100
Listing tuning 100/100

To rank higher: Last updated 859 days ago — ship an update; wp.org decays a listing's search weight after ~180 days.

Get the full rank-higher report →

Daily downloads

Since 2022-10-05 · 1,425 days · wp.org + Plugin Pulse archive

+53% vs prior 30d
13Downloads · Aug 26

30-day downloads

Rolling 30-day volume · peaks are release surges

217

now · peak 5.5K

20630d downloads · Aug 26

Directory rank vs rivals

wp.org popularity rank over time · higher is better · when a rival's line climbs above yours, they've overtaken you

EDD Auto Register · #7431 you Easy Digital Downloa · #6992 EDD Downloads As Ser · #12832 Easy Digital Downloa · #13353

Rating trend

Star average over time · dips mark rough releases

4.7Stars · Aug 26

Update activity

How busy the existing users are, measured as downloads in the last 30 days for every 1,000 active sites. A spike means a new release everyone's pulling; a long, slow decline means an aging user base that updates less.

258per 1k installs · Aug 26

Release cadence

No release in a year
from wp.org release tags

How often this plugin actually ships. A steady rhythm is the maintenance signal a single "last updated" date can't show.

0

releases in the last 12 months

2.4y ago

latest release · v1.4.5

25

tagged releases on record

Recent releases

1.4.5 · 2.4y ago1.4.4 · 3.0y ago1.4.3 · 4.2y ago1.4.2 · 4.3y ago1.4.1 · 4.4y ago1.4 · 4.4y ago1.3.14 · 5.8y ago1.3.13 · 6.9y ago1.3.12 · 6.9y ago1.3.11 · 7.1y ago1.3.9 · 9.3y ago1.3.8 · 10.0y ago1.3.7 · 10.0y ago1.3.6 · 10.1y ago

What its installed base runs

via wordpress.org

Share of active installs on each version of this plugin · 81% run the current release. Green is the current release; a big slice on older versions is a user base that has stopped updating.

v1.4 81%
v1.3 19%

Estimated active installs

The public count shows “800+”. Our estimate pins where the real number sits.

tracked estimate
800–900 ≈860

Refined from the date this plugin crossed into its current band.

Install history · since 2015-08-18 · 1,429 observations

800Installs · Aug 26

Estimated value

What this plugin might earn a year, and what it might sell for. Modeled from public signals; we don't see anyone's books.

Est. annual revenue

N/A

Est. acquisition value

N/A

No paid tier is visible, so we don't put a figure on revenue or sale value: that would be guessing. The install base is a real asset to an acquirer, just not one public data lets us price. A small install base leaves thin data to model from.

Details

Version
1.4.5
Last updated
2.4y ago
Added
2013-10-24 · 12 yrs old
Requires WP
4.4
Tested up to
6.2.11
Requires PHP
5.4

Recent reviews

All reviews on wp.org ↗
  1. Daan van den Bergh
    4.3y ago

    Just wanted to stop by and say thank you for the recent updates! I’ve been using this plugin for almost 2 years, and was happy that it always just worked. But, since it was never updated I was always waiting for it to crash after an update of WordPress. It didn’t, fortunately. 🙂 Happy to see that you guys are giving it some love again 🙂

    Read on wp.org ↗
  2. Dave Warfel
    6.8y ago

    This is an excellent extension to add to Easy Digital Downloads. It eliminates confusion and friction for users when they purchase something on your site because it automatically creates an account for them and logs them in. It’s especially useful when selling online courses or memberships on your site. I use it specifically for LearnDash and it works great. Because it creates the account & logs the user in immediately after a purchase, they can begin consuming your content or taking your course right away. This topic was modified 6 years, 8 months ago by Dave Warfel.

    Read on wp.org ↗
  3. Nico
    8.5y ago

    Security is sadly a topic that the EDD people to not care about. Sending clear text passwords out to people should not be done. I have fixed this with this code. This hides the field be then tells the users after the did the purchase that they should create a password. Not very user friendly, I currently had disabled it but I am thinking of activating it again because I think my sales gone down because if this. <?php namespace nextgenthemes\website; 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 . ",\n\n"; $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() ) . "\n\n"; $out .= __( "Your Username:", "edd-auto-register" ) . ' ' . $username . "\n\n"; 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. This topic was modified 8 years, 5 months ago by Nico. This topic was modified 8 years, 5 months ago by Nico.

    Read on wp.org ↗
  4. justinestrada
    9.3y ago

    This plugin works, I have a suggestion though. In the EDD settings > Misc > Checkout Settings > Show Register / Login Form? You should remove the first two options in the Select field since they no longer apply. I got stuck on this setting for 30 second, no biggy but would make setup smoother. This topic was modified 9 years, 2 months ago by justinestrada.

    Read on wp.org ↗
  5. Phil Derksen
    9.3y ago

    Keep your checkout fields minimal to improve conversions while still getting your customer accounts established. Definitely a key add-on for my EDD sites. Can’t do without it now.

    Read on wp.org ↗
  6. Ruben Garcia
    10.3y ago

    I wish there was an option to enable the introduction of the password directly from the form

    Read on wp.org ↗
  7. Mehrafsar
    10.5y ago

    It works like a charm.

    Read on wp.org ↗
  8. Yudhistira Mauris
    11.1y ago

    It works perfectly to register new buyer.

    Read on wp.org ↗

Behavioral tests

via WP Hive

Automated install-time checks, tested on PHP 8.1.12 · WP 6.5.2

Low memory footprint
Low page-speed impact
Runs on latest PHP + WP
No PHP errors
No JS errors
Activates cleanly
No resource errors
No external HTTP errors
Optimized database use
Frequently updated

Languages

via translate.wordpress.org

Translated into 123 languages, 2 at 90% or more

Dutch 100%
Polish 100%
Swedish 81%
German 54%
Italian 45%
Danish 39%
French (France) 36%
Kurdish (Sorani) 36%
Russian 36%
German (Switzerland) 30%
Spanish (Spain) 21%
Catalan 18%
Hungarian 15%
Norwegian (Bokmål) 15%
Portuguese (Brazil) 15%
Romanian 15%
Spanish (Mexico) 15%
Afrikaans 12%
Albanian 12%
Amharic 12%
Arabic 12%
Aragonese 12%
Armenian 12%
Assamese 12%

Plus 99 more locales with partial translations.

Growth timeline

Install-tier crossings we have observed, and how long each tier took to outgrow

  1. 2026-07-22 900+ → 800+ down after 1 days in tier
  2. 2026-07-21 800+ → 900+ up after 1 days in tier
  3. 2026-07-20 900+ → 800+ down after 75 days in tier
  4. 2026-05-06 1K+ → 900+ down after 444 days in tier
  5. 2025-02-16 2K+ → 1K+ down after 122 days in tier
  6. 2024-10-17 3K+ → 2K+ down after 61 days in tier
  7. 2024-08-17 4K+ → 3K+ down after 22 days in tier
  8. 2024-07-26 5K+ → 4K+ down after 7 days in tier

Competes with

The plugins that solve the same job, ranked by shared tags then reach, closest match first. The letter on the right is each plugin's health grade (A best, F worst).

Compare head to head →

Embed this report card

Drop a live Pulse card for EDD Auto Register into a readme, a review or a deck. It updates itself.

<iframe src="https://plugins.wpmayor.com/embed/edd-auto-register" width="480" height="300" style="border:0" loading="lazy" title="EDD Auto Register — Plugin Pulse"></iframe>
Preview card ↗

EDD Auto Register: 800+ active installs, 4.7★ (12 reviews). Plugin Pulse (WP Mayor), as of 2026-08-29. https://plugins.wpmayor.com/plugin/edd-auto-register