Found: Function create_function() is deprecated
The function is:
add_filter( 'woocommerce_min_password_strength', create_function( '', 'return 1;' ) );
I converted it to:
function wooc_password_check($checks) {
if($checks==="") { return 1; }
}
add_filter( 'woocommerce_min_password_strength', 'wooc_password_check' );
Is this correct or do I need to do this another way?