I am using the following code in functions.php file. It's generating placeholder correctly. but value is not coming. I have used
$args['defaultval'] == "Value"; and $args['default'] == "Value";
But Nothing worked. Help me out this
add_filter('woocommerce_form_field_args', 'custom_form_field_args', 10, 3);
function custom_form_field_args($args, $key, $value) {
if ($args['label'] == "t_size") {
$args['defaultval'] == "Value";
$args['placeholder']="Place";
}
return $args;
}