投稿の際は下記の情報をお書き添えください。
-------------------------------------------
WordPress のバージョン:(例 6.0.2)
Welcart のバージョン:(例 2.8.1)
PHP のバージョン:(例 8.0)
Welcart専用の拡張プラグインとバージョン:(例 DL Seller 3.4.1、SKU Select 1.4.2)
ご利用の親テーマとバージョン :(例 Welcart Basic 1.7.1)
ご利用の子テーマとバージョン :(例 Welcart Beldad 1.4)
症状を確認したブラウザ:
サーバー【重要】:(会社名、サービス名)
--------------------------------------------

フォーラムへの返信

1件の投稿を表示中 - 1 - 1件目 (全1件中)
  • 投稿者
    投稿
  • pokox
    参加者

    すみません。自己解決しました。

    「usces_send_ordermail_para_to_customer」というフィルターで対応できました。

    正規表現の表記に多分に不安がありますが、

    参考用のコードを掲載しておきます。

    add_filter('usces_send_ordermail_para_to_customer', 'to_customer_rewrite', 10, 2);
    function to_customer_rewrite(){
    $args = func_get_args();
    list($confirm_para, $entry, $data) = $args;
    $pattern = "/その他・ご要望[^n]*n/";
    $confirm_para['message'] = preg_replace($pattern, "", $confirm_para['message']);
    return $confirm_para;
    }

    大変お騒がせしました。

1件の投稿を表示中 - 1 - 1件目 (全1件中)