Skip to content

Instantly share code, notes, and snippets.

@aliciaiceland
Created June 6, 2019 06:53
Show Gist options
  • Select an option

  • Save aliciaiceland/df4ebffdf4ab309de88d9f5be0f229ad to your computer and use it in GitHub Desktop.

Select an option

Save aliciaiceland/df4ebffdf4ab309de88d9f5be0f229ad to your computer and use it in GitHub Desktop.
Add field to product enquiry form
/*
Add field to your product enquiry form
*/
add_filter('product_enquery_fields',function($fields){
$new_fields = $fields;
$new_fields['company'] = array(
'label' => __('Company', 'woocommerce'),
'type' => 'text',
'weight'=>9,
);
return $new_fields;
},10,2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment