Probleme hstarrif
-
Bonjour,
Nous sommes finalement passé sur la derniere version de votre plugin (nous etions encore en 5.2.5).
La transition ne semble pas poser de souci a part le CN23
Le numéro HSTARRIF d’une fiche produit ne semblait pas se répercuter sur la metabox CDI d’une commande. Nous avions remediez à cela avec cette fonction mais qui ne semble plus fonctionner avec la nouvelle version de CDI. Avez vous modifier quelque chose à ce niveau? Pourriez vous nous aider?
Merci
// Display Fields
add_action(‘woocommerce_product_options_general_product_data’, ‘woocommerce_product_custom_fields’);
// Save Fields
add_action(‘woocommerce_process_product_meta’, ‘woocommerce_product_custom_fields_save’);
function woocommerce_product_custom_fields(){
global $woocommerce, $post;
echo ‘‘; // Custom Product Text Field woocommerce_wp_text_input( array( ‘id’ => ‘hstariff’, ‘placeholder’ => ‘numéro HSTARRIF’, ‘label’ => __(‘Hstarrif’, ‘woocommerce’), ‘desc_tip’ => ‘true’ ) ); echo ”;
}
function woocommerce_product_custom_fields_save($post_id)
{
// Custom Product Text Field
$woocommerce_custom_product_text_field = $_POST[‘hstariff’];
if (!empty($woocommerce_custom_product_text_field))
update_post_meta($post_id, ‘hstariff’, esc_attr($woocommerce_custom_product_text_field));
}
- You must be logged in to reply to this topic.