Title: thamrin0's Replies | WordPress.org

---

# thamrin0

  [  ](https://wordpress.org/support/users/thamrin0/)

 *   [Profile](https://wordpress.org/support/users/thamrin0/)
 *   [Topics Started](https://wordpress.org/support/users/thamrin0/topics/)
 *   [Replies Created](https://wordpress.org/support/users/thamrin0/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/thamrin0/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/thamrin0/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/thamrin0/engagements/)
 *   [Favorites](https://wordpress.org/support/users/thamrin0/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/thamrin0/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/thamrin0/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ivory Search - WordPress Search Plugin] Notice: Function _load_textdomain_just_in_time was called incorrectly.](https://wordpress.org/support/topic/notice-function-_load_textdomain_just_in_time-was-called-incorrectly-26/)
 *  [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/notice-function-_load_textdomain_just_in_time-was-called-incorrectly-26/#post-18475141)
 * I’m having the same problem.
 * Ivory Search 5.5.11
   Theme Twenty Twenty-Five 1.2WordPress 6.8.1PHP 8.2.22
 * Query Monitor displays the following.
 *     ```wp-block-code
       _load_textdomain_just_in_time()
       wp-includes/l10n.php:1371
       get_translations_for_domain()
       wp-includes/l10n.php:1409
       translate()
       wp-includes/l10n.php:195
       esc_html__()
       wp-includes/l10n.php:340
       IS_Index_Options::get_punctuation_options()
       wp-content/plugins/add-search-to-menu/includes/class-is-index-options.php:579
       IS_Index_Options->__set()
       wp-content/plugins/add-search-to-menu/includes/class-is-index-options.php:769
       IS_Base_Options->set_properties()
       wp-content/plugins/add-search-to-menu/includes/class-is-base-options.php:155
       IS_Index_Options->set_defaults()
       wp-content/plugins/add-search-to-menu/includes/class-is-index-options.php:266
       IS_Base_Options::load()
       wp-content/plugins/add-search-to-menu/includes/class-is-base-options.php:104
       IS_Base_Options::getInstance()
       wp-content/plugins/add-search-to-menu/includes/class-is-base-options.php:68
       IS_Index_Manager->__construct()
       wp-content/plugins/add-search-to-menu/includes/class-is-index-manager.php:152
       IS_Base_Options::load()
       wp-content/plugins/add-search-to-menu/includes/class-is-base-options.php:95
       IS_Base_Options::getInstance()
       wp-content/plugins/add-search-to-menu/includes/class-is-base-options.php:68
       IS_Loader->admin_hooks()
       wp-content/plugins/add-search-to-menu/includes/class-is.php:119
       IS_Loader->load()
       wp-content/plugins/add-search-to-menu/includes/class-is.php:55
       Ivory_Search->start()
       wp-content/plugins/add-search-to-menu/add-search-to-menu.php:159
       ivory_search_start()
       wp-content/plugins/add-search-to-menu/add-search-to-menu.php:169
       do_action('plugins_loaded')
       wp-includes/plugin.php:517
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Email Encoder - Protect Email Addresses and Phone Numbers] Php errors (DOMDocument::loadHTML())](https://wordpress.org/support/topic/php-errors-domdocumentloadhtml/)
 *  [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/php-errors-domdocumentloadhtml/#post-17882362)
 * I rewrote class-email-encoder-bundle-validate.php and no more errors.
   I am not
   sure if the Query Monitor is the cause.
 * line408-409
 *     ```wp-block-code
                   $dom = new DOMDocument();            @$dom->loadHTML($content);
       ```
   
 *     ```wp-block-code
                   $dom = new DOMDocument();  $internalErrors = libxml_use_internal_errors(true);                @$dom->loadHTML($content);
       ```
   
 * line440-442
 *     ```wp-block-code
                   }
   
                   //Keep for now
       ```
   
 *     ```wp-block-code
                                   }libxml_use_internal_errors($internalErrors);libxml_clear_errors();                        //Keep for now
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Email Encoder - Protect Email Addresses and Phone Numbers] Php errors (DOMDocument::loadHTML())](https://wordpress.org/support/topic/php-errors-domdocumentloadhtml/)
 *  [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/php-errors-domdocumentloadhtml/#post-17689655)
 * Here is a page written in Japanese, but it is helpful.
 * [https://tabiji.gallery/development/5311](https://tabiji.gallery/development/5311)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Email Encoder - Protect Email Addresses and Phone Numbers] Php errors (DOMDocument::loadHTML())](https://wordpress.org/support/topic/php-errors-domdocumentloadhtml/)
 *  [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/php-errors-domdocumentloadhtml/#post-17689468)
 * /email-encoder-bundle/core/includes/classes/class-email-encoder-bundle-validate.
   php
 * When I load an HTML5 page, I get a php error on line 409.
 * @$dom->loadHTML($content);
 * You should be able to suppress errors with libxml_use_internal_errors and libxml_clear_errors
   before and after loadHTML.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Email Encoder - Protect Email Addresses and Phone Numbers] Php errors seen with Query Monitor](https://wordpress.org/support/topic/php-errors-seen-with-query-monitor/)
 *  [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/php-errors-seen-with-query-monitor/#post-17337848)
 * I have the same problem.
   I am in the following environment in Japanese.
 * WordPress 6.4.2
   Email Encoder 2.2.0PHP 7.4.33
 * The location columns are a little different.
 *     ```wp-block-code
       wp-content/plugins/email-encoder-bundle/core/includes/classes/class-email-encoder-bundle-validate.php:409
       DOMDocument->loadHTML()
       wp-content/plugins/email-encoder-bundle/core/includes/classes/class-email-encoder-bundle-validate.php:409
       Email_Encoder_Validate->filter_soft_dom_attributes()
       wp-content/plugins/email-encoder-bundle/core/includes/classes/class-email-encoder-bundle-validate.php:78
       Email_Encoder_Validate->filter_page()
       wp-content/plugins/email-encoder-bundle/core/includes/classes/class-email-encoder-bundle-run.php:381
       Email_Encoder_Run->filter_page()
       wp-includes/class-wp-hook.php:324
       apply_filters('final_output')
       wp-content/plugins/email-encoder-bundle/core/includes/classes/class-email-encoder-bundle-run.php:189
       Email_Encoder_Run->apply_content_filter()
       wp-content/plugins/email-encoder-bundle/core/includes/classes/class-email-encoder-bundle-run.php:189
       ob_end_flush()
       wp-includes/functions.php:5373
       wp_ob_end_flush_all()
       wp-includes/class-wp-hook.php:324
       do_action('shutdown')
       wp-includes/load.php:1260
       shutdown_action_hook()
       wp-includes/load.php:1260
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[reCAPTCHA for MW WP Form] Notice: Trying to get property in 404](https://wordpress.org/support/topic/notice-trying-to-get-property-in-404/)
 *  Thread Starter [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/notice-trying-to-get-property-in-404/#post-15566771)
 * バージョン 1.1.1 で修正されていることを確認しました。
    ご対応ありがとうござい
   ます。
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-In-One Security (AIOS) – Security and Firewall] Automatic update notification emails are now in English instead of Japanese.](https://wordpress.org/support/topic/automatic-update-notification-emails-are-now-in-english-instead-of-japanese-2/)
 *  Thread Starter [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/automatic-update-notification-emails-are-now-in-english-instead-of-japanese-2/#post-15566329)
 * This problem has not been resolved.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-In-One Security (AIOS) – Security and Firewall] Automatic update notification emails are now in English instead of Japanese.](https://wordpress.org/support/topic/automatic-update-notification-emails-are-now-in-english-instead-of-japanese-2/)
 *  Thread Starter [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/automatic-update-notification-emails-are-now-in-english-instead-of-japanese-2/#post-15553905)
 * I’m sorry. I have changed the status of the previous topic, please delete this
   one.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-In-One Security (AIOS) – Security and Firewall] Automatic update notification emails are now in English instead of Japanese.](https://wordpress.org/support/topic/automatic-update-notification-emails-are-now-in-english-instead-of-japanese/)
 *  Thread Starter [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/automatic-update-notification-emails-are-now-in-english-instead-of-japanese/#post-15544346)
 * Unfortunately, this problem has not been corrected.
 * I recently upgraded AIOWPs from 4.4.10 to 4.4.11, but I still receive notification
   emails in English.
 * When I downgraded AIOWPs to 4.4.9, it now arrives in Japanese.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Flexible Table Block] グローバル設定ボタンがない](https://wordpress.org/support/topic/%e3%82%b0%e3%83%ad%e3%83%bc%e3%83%90%e3%83%ab%e8%a8%ad%e5%ae%9a%e3%83%9c%e3%82%bf%e3%83%b3%e3%81%8c%e3%81%aa%e3%81%84/)
 *  Thread Starter [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/%e3%82%b0%e3%83%ad%e3%83%bc%e3%83%90%e3%83%ab%e8%a8%ad%e5%ae%9a%e3%83%9c%e3%82%bf%e3%83%b3%e3%81%8c%e3%81%aa%e3%81%84/#post-15541989)
 * とてもわかりやすいアドバイスありがとうございます。
    functions.phpに追加した、
   REST APIからユーザー名を消すコードが原因でした。
 * 自分がログインしている時には動かないよう下記のように変更したところ、無事にボタン
   が表示されるようになりました。
 *     ```
       //REST APIからユーザー名を消す
       function my_filter_rest_endpoints( $endpoints ) {
           if ( current_user_can( 'edit_posts' ) ) {
               return $endpoints;
           }
           if ( isset( $endpoints['/wp/v2/users'] ) ) {
               unset( $endpoints['/wp/v2/users'] );
           }
           if ( isset( $endpoints['/wp/v2/users/(?P[\d]+)'] ) ) {
               unset( $endpoints['/wp/v2/users/(?P[\d]+)'] );
           }
           return $endpoints;
       }
       add_filter( 'rest_endpoints', 'my_filter_rest_endpoints', 10, 1 );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Flexible Table Block] グローバル設定ボタンがない](https://wordpress.org/support/topic/%e3%82%b0%e3%83%ad%e3%83%bc%e3%83%90%e3%83%ab%e8%a8%ad%e5%ae%9a%e3%83%9c%e3%82%bf%e3%83%b3%e3%81%8c%e3%81%aa%e3%81%84/)
 *  Thread Starter [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/%e3%82%b0%e3%83%ad%e3%83%bc%e3%83%90%e3%83%ab%e8%a8%ad%e5%ae%9a%e3%83%9c%e3%82%bf%e3%83%b3%e3%81%8c%e3%81%aa%e3%81%84/#post-15540988)
 * デフォルトテーマに変えたところ、表示されました！
    コンソールログには特にエラー
   はありませんでした。
 * こちらの環境の問題でしたね。お騒がせいたしました。
    お忙しいところご対応いただき
   ありがとうございます。
    -  This reply was modified 4 years, 5 months ago by [thamrin0](https://wordpress.org/support/users/thamrin0/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Flexible Table Block] グローバル設定ボタンがない](https://wordpress.org/support/topic/%e3%82%b0%e3%83%ad%e3%83%bc%e3%83%90%e3%83%ab%e8%a8%ad%e5%ae%9a%e3%83%9c%e3%82%bf%e3%83%b3%e3%81%8c%e3%81%aa%e3%81%84/)
 *  Thread Starter [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/%e3%82%b0%e3%83%ad%e3%83%bc%e3%83%90%e3%83%ab%e8%a8%ad%e5%ae%9a%e3%83%9c%e3%82%bf%e3%83%b3%e3%81%8c%e3%81%aa%e3%81%84/#post-15540890)
 * 私はサイト唯一の管理者としてログインしていますので、表示されるはずだと思います。
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-In-One Security (AIOS) – Security and Firewall] Automatic update notification emails are now in English instead of Japanese.](https://wordpress.org/support/topic/automatic-update-notification-emails-are-now-in-english-instead-of-japanese/)
 *  Thread Starter [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/automatic-update-notification-emails-are-now-in-english-instead-of-japanese/#post-15432788)
 * Thanks for your support. I am looking forward to your updates.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-In-One Security (AIOS) – Security and Firewall] Automatic update notification emails are now in English instead of Japanese.](https://wordpress.org/support/topic/automatic-update-notification-emails-are-now-in-english-instead-of-japanese/)
 *  Thread Starter [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/automatic-update-notification-emails-are-now-in-english-instead-of-japanese/#post-15422400)
 * 1.Install WordPress.
    2.In General Settings, set Site Language to Japanese and
   Timezone to Tokyo. 3.Add plugins. (AIOWPs, WP Multibyte Patch) 4.Enable AIOWPs
   and WP Multibyte Patch. Disable all other plug-ins, if any. 5.Enable automatic
   updates. All WordPress maintenance and security releases, themes and plugins.
   6.Wait for automatic updates. 7.The auto-update notification email is in English.
 * If you have disabled AIOWPs, the auto-update notification email will be in Japanese.
    -  This reply was modified 4 years, 6 months ago by [thamrin0](https://wordpress.org/support/users/thamrin0/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-In-One Security (AIOS) – Security and Firewall] Automatic update notification emails are now in English instead of Japanese.](https://wordpress.org/support/topic/automatic-update-notification-emails-are-now-in-english-instead-of-japanese/)
 *  Thread Starter [thamrin0](https://wordpress.org/support/users/thamrin0/)
 * (@thamrin0)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/automatic-update-notification-emails-are-now-in-english-instead-of-japanese/#post-15417008)
 * This problem started right after the AIOWPs version was upgraded from 4.4.9 to
   4.4.10.

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/thamrin0/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/thamrin0/replies/page/2/?output_format=md)