// Crear url google maps
add_action( 'woocommerce_product_options_general_product_data', 'add_custom_field_general_product_fields2' );
function add_custom_field_general_product_fields2(){
global $post;
$value = get_post_meta( $post->ID, '_url_google_maps', true );
if(empty($value))
$value = '';
echo '<div class="options_group">';
woocommerce_wp_text_input( array(
'id' => 'url_google_maps',
'label' => __( 'URL GOOGLE MAP', 'woocommerce' ),
'placeholder' => 'https://',
'desc_tip' => 'true',
'description' => __( 'URL Google Maps.', 'woocommerce' ),
'value' => $value
) );
echo '</div>';
}
// Guardar url google maps
add_action( 'woocommerce_process_product_meta', 'save_custom_field_general_product_fields2' );
function save_custom_field_general_product_fields2( $post_id){
// Text Field
$url_google_maps = $_POST['url_google_maps'];
if( !empty( $url_google_maps ) )
update_post_meta( $post_id, '_url_google_maps', esc_attr( $url_google_maps ) );
}