16

How to Add a Password Hint to Easy Digital Downloads Checkout

Powered by WPCodeBox

Enhance your Easy Digital Downloads checkout experience by adding a standard WordPress password hint directly below the account creation fields. This snippet helps guide users and improve the checkout process.


<?php

/*
 * Plugin Name: Easy Digital Downloads - Add Password Hint
 * Description: Add standard WP password hint to checkout right below account creation fields.
 * Author: Easy Digital Downloads
 * Author URI: https://easydigitaldownloads.com/
 * Version: 1.0
 */

function pd_add_standard_wp_password_hint() {
	?>

	<p id="edd-password-hint-wrap">
		<?php echo wp_get_password_hint(); ?>
	</p>

	<?php
}
add_action( 'edd_register_account_fields_after', 'pd_add_standard_wp_password_hint', 10, 2 );

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.