Отключить редактирование определенных пользовательских полей администратора в Woocommerce - PullRequest
0 голосов
/ 23 сентября 2018

У меня есть несколько настраиваемых полей для моих продуктов Woocommerce на вкладке Inventory, используя функцию woocommerce_wp_text_input () .Я хотел бы добавить еще одно настраиваемое текстовое поле только для отображения значения для справки.

Я хочу заблокировать текстовое поле по умолчанию, чтобы не иметь возможности что-то в него записать.

Возможно ли это?

1 Ответ

0 голосов
/ 24 сентября 2018

Да, можно добавить свойство as custom_attributes для чтения только в массив аргументов поля, используя:

'custom_attributes' => array('readonly' => 'readonly'),

Таким образом, ваш код будет выглядеть так:

add_action( 'woocommerce_product_options_stock_status', 'display_product_options_inventory_custom_fields', 20 );
function display_product_options_inventory_custom_fields() {
    global $post;

    echo '</div><div class="options_group">'; // New separated section

    // Text field (conditionally readonly)
    woocommerce_wp_text_input( array(
        'id'                => '_text_field_ro',
        'type'        => 'text',
        'label'       => __( 'Read only field', 'woocommerce' ),
        'placeholder' => __( 'placeholder text', 'woocommerce' ),
        'description' => __( 'Custom description: your explanations.', 'woocommerce' ),
        'desc_tip'    => true,
        'custom_attributes' => $readonly, // Enabling read only
    ) );
}

Код входит в функциюФайл .php вашей активной дочерней темы (или активной темы).Протестировано и работает.

enter image description here


Обновление: Добавление флажка для включения полей только для чтения:

add_action( 'woocommerce_product_options_stock_status', 'display_product_options_inventory_custom_fields', 20 );
function display_product_options_inventory_custom_fields() {
    global $post;

    echo '</div><div class="options_group">'; // New separated section

    // Checkbox
    woocommerce_wp_checkbox( array(
        'id'          => '_enable_readonly',
        'label'       => __( 'Enable readonly fields', 'woocommerce' ),
        'description' => __( 'Enable some fields to be readonly', 'woocommerce' ),
        'desc_tip'    => true,
    ));

    // Get the checkbox value
    $checkbox = get_post_meta( $post->ID, '_enable_readonly', true );

    // We set the field attribute "readonly" conditionally based on the checkbox
    $readonly = empty($checkbox) ? '' : array('readonly' => 'readonly');

    // Text field 1 (conditionally readonly)
    woocommerce_wp_text_input( array(
        'id'                => '_text_field_ro1',
        'type'        => 'text',
        'label'       => __( 'Read only field 1', 'woocommerce' ),
        'placeholder' => __( 'placeholder text 1', 'woocommerce' ),
        'description' => __( 'Custom description 1: your explanations.', 'woocommerce' ),
        'desc_tip'    => true,
        'custom_attributes' => $readonly, // Enabling read only
    ) );

    // Text field 2 (conditionally readonly)
    woocommerce_wp_text_input( array(
        'id'                => '_text_field_ro2',
        'type'        => 'text',
        'label'       => __( 'Read only field 2', 'woocommerce' ),
        'placeholder' => __( 'placeholder text 2', 'woocommerce' ),
        'description' => __( 'Custom description 2: your explanations.', 'woocommerce' ),
        'desc_tip'    => true,
        'custom_attributes' => $readonly, // Enabling read only
    ) );
}

add_action( 'woocommerce_process_product_meta', 'save_product_custom_fields' );
function save_product_custom_fields( $post_id ) {
    // 1. readonly checkbox
    $readonly = isset( $_POST['_enable_readonly'] ) ? esc_attr( $_POST['_enable_readonly'] ) : '';
    update_post_meta( $post_id, '_enable_readonly', $readonly );

    // 2. Readonly fields: allow saving when readonly is disabled
    if( ! isset( $_POST['_enable_readonly'] ) ){
        // Save text field 1 value
        if( isset( $_POST['_text_field_ro1'] ) ){
            update_post_meta( $post_id, '_text_field_ro1', sanitize_text_field( $_POST['_text_field_ro1'] ) );
        }
        // Save text field 2 value
        if( isset( $_POST['_text_field_ro2'] ) ){
            update_post_meta( $post_id, '_text_field_ro2', sanitize_text_field( $_POST['_text_field_ro2'] ) );
        }
    }
}

Код помещается в файл function.php вашей активной дочерней темы (или активной темы).Проверено и работает.

Флажок отключен (поля не только для чтения):

enter image description here

Флажок включен (поля только для чтения):

enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...