Title: odoremieux's Replies | WordPress.org

---

# odoremieux

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ivory Search - WordPress Search Plugin] I get this warning when DEBUG is active](https://wordpress.org/support/topic/i-get-this-warning-when-debug-is-active/)
 *  [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/i-get-this-warning-when-debug-is-active/#post-18516123)
 * I still have the issue. When you do an install and nothing else. Latest WordPress,
   latest Ivory Search
 * **Notice**: Function _load_textdomain_just_in_time was called **incorrectly**.
   Translation loading for the `add-search-to-menu` domain was triggered too early.
   This is usually an indicator for some code in the plugin or theme running too
   early. Translations should be loaded at the `init` action or later. Please see
   [Debugging in WordPress](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/)
   for more information. (This message was added in version 6.7.0.) in **/home/wphelpus/
   subs/ivory.wphelpclub.us/wp-includes/functions.php** on line **6121**
 *   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-34/)
 *  [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/notice-function-_load_textdomain_just_in_time-was-called-incorrectly-34/#post-18497017)
 * It’s a brand new install, just for this test, it only has Ivory Search installed.
   I did try what you suggested, but it didn’t work. Just having DEBUG set to true
   is enough to see the warning.
 * > [View post on imgur.com](https://imgur.com/a/D6j0WyT)
 * Apparently esc_html__ is called too early in get_punctuation_options. It’s recommended
   to call it at the earliest in init, plugins_loaded is too early. This warning
   started to appear with WordPress 6.7, so not too long ago.
 *   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-34/)
 *  [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/notice-function-_load_textdomain_just_in_time-was-called-incorrectly-34/#post-18494879)
 * I have the same issue with PHP 8.2
 * I have seen this problem several times.
 * To reproduce it, install the plugin **Debug**, by [SoniNow Team](http://www.soninow.com).
 * > [View post on imgur.com](https://imgur.com/a/YKxuzRt)
    -  This reply was modified 1 year, 2 months ago by [odoremieux](https://wordpress.org/support/users/odoremieux/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Fonts - Host Your Fonts Locally] <scrip id="cst_font_data" … added twice](https://wordpress.org/support/topic/scrip-idcst_font_data-added-twice/)
 *  Thread Starter [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/scrip-idcst_font_data-added-twice/#post-17099359)
 * If you change a bit your code
 * With this code, it’s added only once, and in the head. Your current code add 
   it before the html tag
 *     ```wp-block-code
       <style type="text/css" id="cst_font_data"> @font-face { font-family: 'Gotham Bold'; font-weight: 400; src: url('http://gutenberg.local/wp-content/uploads/2023/10/Gotham-Bold.otf') format('OpenType'); } </style> <!DOCTYPE html> <html class="wp-toolbar" lang="en-US"> <head>
       ```
   
 * Here are some suggestions
 *     ```wp-block-code
       public function add_block_assets_style() {			
       			if ( is_admin() && ! is_customize_preview() ) {				
       				wp_register_style( 'cst_font_data', false );
       				wp_enqueue_style( 'cst_font_data' );
       				add_action( 'enqueue_block_assets', array( $this, 'add_style' ) );
       			}
       			add_action( 'enqueue_block_editor_assets', array( $this, 'enque_data' ) );
       		}
   
       public function add_style() {
   
       $font_styles = '';
   
       $query_posts = $this->get_existing_font_posts();
   
       if ( $query_posts ) {
   
       foreach ( $query_posts as $key => $post_id ) {
   
       $font_styles .= get_post_meta( $post_id, 'fonts-face', true );
   
       }
   
       wp_reset_postdata();
   
       }
   
       if ( ! empty( $font_styles ) ) {
   
       wp_add_inline_style('cst_font_data',wp_strip_all_tags( $font_styles ));
   
       /*
   
       ?>
   
       <style type="text/css" id="cst_font_data">
   
       <?php echo wp_strip_all_tags( $font_styles ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
   
       </style>
   
       <?php
   
       */
   
       }
   
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quick Featured Images] Performance issue](https://wordpress.org/support/topic/performance-issue-46/)
 *  Thread Starter [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/performance-issue-46/#post-16480354)
 * It’s the list view
 * On the media library if you go at the top (screen options), you can select the
   number of items displayed on the page. You can do that for any post type
 * Side note the media library has over 67000 items, which has an impact of the 
   query.
 * The LIKE compare characters per characters, = just the string
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Limit Max IPs Per User] Bug](https://wordpress.org/support/topic/bug-384/)
 *  Thread Starter [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/bug-384/#post-16127268)
 * Hey,
 * It’s working. Thanks for following up.
 * Olivier
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Download Manager] compatible versions 2.6x versions 2.7 and above](https://wordpress.org/support/topic/compatible-versions-26x-versions-27-and-above/)
 *  [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/compatible-versions-26x-versions-27-and-above/#post-5501365)
 * The Migration didn’t work for us. It can’t find the files, and all the id are
   gone in the shortcode.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Professional Social Sharing Buttons, Icons & Related Posts - Shareaholic] Buttons showing up, but then some disappear](https://wordpress.org/support/topic/buttons-showing-up-but-then-some-disappear/)
 *  Thread Starter [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [12 years ago](https://wordpress.org/support/topic/buttons-showing-up-but-then-some-disappear/#post-5129548)
 * Thanks Mary Anne, it’s working.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Calendar - Google Calendar Plugin] Problem with recurring events](https://wordpress.org/support/topic/problem-with-recurring-events/)
 *  Thread Starter [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/problem-with-recurring-events/#post-4153528)
 * Thanks.
 * Yes I tried the refresh link, several times, we saw this problem few days ago,
   tried several refresh before asking here.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Really Simple Share] Not compatible with the Facebook plugin](https://wordpress.org/support/topic/not-compatible-with-the-facebook-plugin/)
 *  Thread Starter [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/not-compatible-with-the-facebook-plugin/#post-3228068)
 * It’s because FB have you on the list of incompatible plugins. When the plugin
   is disabled, the list of incompatible plugins is empty. So it’s a FB bug, but
   it’s your fault 🙂 . Just pushing your buttons
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Really Simple Share] Not compatible with the Facebook plugin](https://wordpress.org/support/topic/not-compatible-with-the-facebook-plugin/)
 *  Thread Starter [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/not-compatible-with-the-facebook-plugin/#post-3228066)
 * Hi,
 * Are you using the latest version of the Facebook Plugin?
    It use to work for 
   me until I did update. I don’t have any Facebook option enabled with the Really
   Simple Facebook … Plugin. When I do enable the 2 plugins, on the Facebook plugin
   I get Fatal error: Call to undefined function fb_admin_dialog() in /home/wphelpcl/
   public_html/blog/wp-content/plugins/facebook/admin/settings.php on line 328
 * If I disable Really Simple Facebook … Plugin, it work with no problem.
 * Thanks,
 * Olivier
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cool Video Gallery] [Plugin: Cool Video Gallery] is this abandonware?](https://wordpress.org/support/topic/plugin-cool-video-gallery-is-this-abandonware/)
 *  [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-cool-video-gallery-is-this-abandonware/#post-3128369)
 * I don’t have a problem with the delete. So I guess I fixed it. 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cool Video Gallery] [Plugin: Cool Video Gallery] is this abandonware?](https://wordpress.org/support/topic/plugin-cool-video-gallery-is-this-abandonware/)
 *  [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-cool-video-gallery-is-this-abandonware/#post-3128289)
 * Did you turn on debugging output message on WordPress?
    You can also put debug
   message yourself.
 * We did add a lot of functionalities to that plugins, and that’s how we got started.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cool Video Gallery] [Plugin: Cool Video Gallery] is this abandonware?](https://wordpress.org/support/topic/plugin-cool-video-gallery-is-this-abandonware/)
 *  [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-cool-video-gallery-is-this-abandonware/#post-3128270)
 * It’s a great plugin.
    You can always try to fix the problem yourself.
 * Or hire some professional to fix it for you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cool Video Gallery] [Plugin: Cool Video Gallery] Adding Dropbox/other external videos](https://wordpress.org/support/topic/plugin-cool-video-gallery-adding-dropboxother-external-videos/)
 *  [odoremieux](https://wordpress.org/support/users/odoremieux/)
 * (@odoremieux)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-cool-video-gallery-adding-dropboxother-external-videos/#post-3078472)
 * You’ll have to customize the code to be able to use external videos.
 * Olivier (WP Help Club)

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

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