Home Forums WC Vendors Pro Support How to change type of field in product submission? Reply To: How to change type of field in product submission?

#58821
Pablo
Participant

Hi,

So I added this to functions.php but no dropdown has been shown on short_description field:

add_filter( 'wcv_short_description', 'short_description_hours' ); 
function short_description_hours( $args ){ 
	$args[ 'class' ] = 'wcv-select2'; 
	return $args; 
}