Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Last active December 3, 2018 11:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leewillis77/27fe2a18ca76e88cca150a1912cbbaac to your computer and use it in GitHub Desktop.
Save leewillis77/27fe2a18ca76e88cca150a1912cbbaac to your computer and use it in GitHub Desktop.
Add custom field to prepopulation list
<?php
function lw_woocommerce_gpf_custom_field_list( $list ) {
// Register the _my_custom_field meta field as a pre-population option.
$list['meta:_my_custom_field'] = 'My custom field';
return $list;
}
add_filter( 'woocommerce_gpf_custom_field_list', 'lw_woocommerce_gpf_custom_field_list' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment