How to Set Default User Registration R...
Learn how to set the default user registration role in WooCommerce by adjusting line ...

WPCodeBox
432
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 );





