お世話になります。
カードページ設定の「カスタム・オーダーフィールド」
について、カスタム・フィールドにテキストエリアを使うように実現しました。
いくつかファイルを修正しました。
1
includes/initial.php
74行
$custom_order_selectの配列に’5′ => __(‘Text-area’, ‘usces’)を追加しました。
2
functions/template_func.php
2-1
関数usces_custom_field_inputに
1935行
case 5://テキストアリア
$html .= ‘
<td colspan=”2″><textarea class=”notes” name=”‘.$label.'”>’.esc_attr($data[$label][$key]).'</textarea>’;
break;
を追加しました。
2-2
関数usces_custom_field_infoに
1989行
case 5://テキストエリア
を追加しました。
2-3
関数usces_admin_custom_field_inputに
2089行
case 5://テキスト
$html .= ‘
<td’.$class.’><textarea name=”‘.$label.'” >’.esc_attr($data).'</textarea></td>’;
break;
を追加しました。
テストしました。ほぼ問題がありません。
以上です。よろしくお願いします。