// Añadir el campo de "Ahorro Instantáneo" en la página de edición de producto function instant_savings_add_product_field() { woocommerce_wp_text_input( array( 'id' => '_instant_savings_amount', 'label' => 'Ahorro Instantáneo', 'desc_tip' => 'true', 'description' => 'Introduce la cantidad que se ahorra el cliente en este producto.', 'type' => 'number', 'custom_attributes' => array( 'step' => '0.01', 'min' => '0' ) )); } add_action( 'woocommerce_product_options_general_product_data', 'instant_savings_add_product_field', 20 ); // Guardar el valor del campo "Ahorro Instantáneo" function instant_savings_save_product_field( $post_id ) { // Verifica si el campo está presente en el formulario if ( isset( $_POST['_instant_savings_amount'] ) ) { $instant_savings = sanitize_text_field( $_POST['_instant_savings_amount'] ); update_post_meta( $post_id, '_instant_savings_amount', $instant_savings ); } } add_action( 'woocommerce_process_product_meta', 'instant_savings_save_product_field' ); Shop – Page 11 – Electronic Store, Tech Pc, Components, Laptop, Desktop

Main Menu