Whether to allow weak passwords on the change password and reset password pages.

You can set this to return true to allow weak passwords on the change password and reset password pages (not recommended). Note that at this time, weak passwords are still allowed on the checkout page no matter the value of this filter. We expect to change that in the future. For now, you can use our PMPro Strong Passwords plugin to force strong passwords at checkout.

`
/**
* Filter to allow weak passwords on the
* change password and reset password forms.
* At this time, this only disables the JS check on the frontend.
* There is no backend check for weak passwords on those forms.
*
* @since 2.3.3
*
* @see pmpro_enqueue_scripts
*
* @param bool $allow_weak_passwords Whether to allow weak passwords (default: false)
*
* @return bool true to allow weak passwords, false to not allow.
*/
$allow_weak_passwords = apply_filters( ‘pmpro_allow_weak_passwords’, false );
`

Parameters

$allow
bool

Return Value

true or false


Source

File: https://github.com/strangerstudios/paid-memberships-pro/blob/master/includes/scripts.php

View in Source Code

Related Articles and Recipes

Allow Members to Create Weak Passwords During Reset or Profile Update By Jason Coleman


About Actions and Filters in PMPro

Hooks allow you to extend Paid Memberships Pro without editing any core plugin files. You can use a hook to program custom code that interacts with or modifies code in our plugin, Add Ons, your theme, and even WordPress itself.

There are two kinds of hooks: actions and filters.

  • Action hooks allow you to run new custom code at pre-defined locations.
  • Filter hooks allow you to change or extend existing code by modifying the data and returning it back to the software.

Click here to browse the full database of action and filter hooks available in Paid Memberships Pro. For help extending our Add Ons, refer to the individual Add On's documentation page for a list of available hooks.

For more developer-focused information about Paid Memberships Pro, check out the advanced developer topics documentation.

Was this article helpful?
YesNo