How to Change the WordPress Login Page...
This snippet allows you to easily change the URL of the logo on your WordPress login ...

WPCodeBox
39

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





