Site icon Hip-Hop Website Design and Development

WordPress Reset password Energy set to medium

I’ve been on the lookout for a solution for a couple of days digging by way of hooks and actions.

I simply cane appear to discover a strategy to flip down the power on the reset password web page undecided if its by way of woo-commerce or WP

I’ve tried the next

add_filter( 'woocommerce_min_password_strength', 'reduce_woocommerce_min_strength_requirement' );
    perform reduce_woocommerce_min_strength_requirement( $power ) {
    return 2;
}

add_filter( 'wc_password_strength_meter_params', 'reduce_strength_meter_settings' );
perform reduce_strength_meter_settings( $information ) {

    return array_merge( $information, array(
        'min_password_strength' => 2,
        'i18n_password_hint' => 'Change Trace right here'
    ) );

}