我在我的Wordpress网站上有一个“learnpress”插件,它使用默认的注册Wordpress设置,但我想删除密码的所有限制,包括长度(12个字符),添加数字,我还想能够用其他语言设置密码。
我在函数中尝试了此代码。php,但它没有工作!有什么想法吗?
function wc_remove_password_strength() {
if ( wp_script_is( \'wc-password-strength-meter\', \'enqueued\' ) ) {
wp_dequeue_script( \'wc-password-strength-meter\' );
}
}
add_action( \'wp_print_scripts\', \'wc_remove_password_strength\', 100 );
SO网友:vikrant zilpe
if you use wocommerce please try this code to your current theme functions.php
添加\\u操作(“wp\\u enqueue\\u scripts”、“misha\\u deactivate\\u pass\\u strength\\u meter”,10);
功能misha\\u deactivate\\u pass\\u strength\\u meter(){
wp\\u dequeue\\u脚本(“wc密码强度表”);
}