Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Created June 17, 2019 08:54
Show Gist options
  • Save leewillis77/a4043e2b70e0ada39132d52daae00c82 to your computer and use it in GitHub Desktop.
Save leewillis77/a4043e2b70e0ada39132d52daae00c82 to your computer and use it in GitHub Desktop.
Registers GTIN field from Product GTIN for WooCommerce plugin as a pre-population option.
<?php
/**
* Registers a meta field as a prepopulation option.
*/
function lw_woocommerce_gpf_custom_field_list( $list ) {
$list['meta:_wpm_gtin_code'] = 'GTIN field from Product GTIN for WooCommerce plugin';
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