Hide the WordPress Admin Bar for All U...
Learn how to easily remove the WordPress admin bar for all users except administrator...

WPCodeBox
435

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





