LoginSignup
0
0

More than 1 year has passed since last update.

memberpressの~ヶ月(month)と月(month)の区別

Posted at

memberpressをそのまま翻訳して使うと、「〜ヶ月」と「月」(カードの有効期限とか)が混同されてしまいます。
memberpress/app/helpers/MeprAppHelper.phpのファイルを編集して、両者を区別します。

編集コード

memberpress/app/helpers/MeprAppHelper.php
//前略
          if($conv_trial_type=="months"){
            $conv_trial_type_str="ヶ月";
          }else{
            $conv_trial_type_str = MeprUtils::period_type_name($conv_trial_type, $conv_trial_count);
          }
//以下略
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0