kitamuuu様
有難うございます。
下記の通りの記述でうまくいきました!!
add_filter(‘usces_filter_incart_check’, ‘my_incart_check’, 10, 3);
function my_incart_check($mes, $post_id, $sku){
$enc_txtarea_op = urlencode(‘文字’);
if( isset($_POST[‘itemOption’][$post_id][$sku][$enc_txtarea_op]) ){
$textarea_val = $_POST[‘itemOption’][$post_id][$sku][$enc_txtarea_op];
$text_length = mb_strlen($textarea_val);
if($text_length > 20){
$mes[$post_id][$sku] = ‘文字数エラー’;
return $mes;
}
}
}
ほんとに嬉しいです。
何度もご対応いただき、さらに迅速なるご回答に感謝しております。
誠にありがとうございました。