• [設定]-[Contact Form 7 Serial Numbers]にて、桁数を0→4に更新しても、0となる状態です。
    (下記修正したところ、設定した桁数で表示されていたので、保存はできていたようです。)

    includes/class-contact_list_table.php
    column_setting()にての現在設定値取得の誤りのようです。

    $count = intval( get_option('nklab_wpcf7sn_count_' . $item_id) );
            if (($digits = get_option('nklab_wpcf7sn_digits_' . $item_id)) == false) {
                // 存在していないため事前に初期値を保存
                update_option('nklab_wpcf7sn_digits_' . $item_id, 0);
            }
    /*BUG?        $digits = intval( get_option('nklab_wpcf7sn_digits_'));*/
            $digits = intval( get_option('nklab_wpcf7sn_digits_' . $item_id));/*←修正*/
    
  • The topic ‘桁数の設定が更新されないように見える’ is closed to new replies.