I’m creating and managing some additional product meta using Piklist. Currently, I need to implement an asset # field using mixed characters, so I’m using the standard ‘type’ => ‘text’.
Unfortunately, I’ve noticed that none of the fields are setting the default value if I assign one. Here’s my full field example:
piklist(‘field’, array(
‘type’ => ‘text’,
‘field’ => ‘vzms_asset_number’,
‘label’ => ‘Asset #’,
‘description’ => ”,
‘value’ => ‘123efg’
));
Can someone help me figure out what’s going on? Thanks.