Title: ripleman's Replies | WordPress.org

---

# ripleman

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

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

 Search replies:

## Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Clearfy Cache – WordPress optimization plugin, Minify HTML, CSS & JS, Defer] Yoast SEO wrong update budge count](https://wordpress.org/support/topic/yoast-seo-wrong-update-budge-count/)
 *  Thread Starter [ripleman](https://wordpress.org/support/users/ripleman/)
 * (@ripleman)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/yoast-seo-wrong-update-budge-count/#post-10772926)
 * I use blocked Yoast SEO in Updates Manager, when I unblock it, this issue gone.
   And i have Yoast SEO Premium version.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Clearfy Cache – WordPress optimization plugin, Minify HTML, CSS & JS, Defer] Updates manager – wrong plugin updates count badge](https://wordpress.org/support/topic/updates-manager-wrong-plugin-updates-count-badge/)
 *  Thread Starter [ripleman](https://wordpress.org/support/users/ripleman/)
 * (@ripleman)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/updates-manager-wrong-plugin-updates-count-badge/#post-10604992)
 * This behavior is caused by Yoast plugin.
    Maybe this is not Updates manager issue.
    -  This reply was modified 7 years, 10 months ago by [ripleman](https://wordpress.org/support/users/ripleman/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Clearfy Cache – WordPress optimization plugin, Minify HTML, CSS & JS, Defer] PHP Notice Error](https://wordpress.org/support/topic/php-notice-error-4/)
 *  Thread Starter [ripleman](https://wordpress.org/support/users/ripleman/)
 * (@ripleman)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/php-notice-error-4/#post-10602906)
 * and get these notice + warning when saving changes to other plugins:
 *     ```
       Notice: wbcr_factory_admin_notices is deprecated since version 4.0.5! Use wbcr_factory_notices_405_list instead. in .../wp-includes/functions.php on line 4104
   
       Warning: Cannot modify header information - headers already sent by (output started at .../wp-includes/functions.php:4104) in /home/luminous/gerobotic.com/grtest1/wp-includes/pluggable.php on line 1219
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Permalinks] Dont work correctly with WPML and Yoast SEO](https://wordpress.org/support/topic/dont-work-correctly-with-wpml-and-yoast-seo/)
 *  Thread Starter [ripleman](https://wordpress.org/support/users/ripleman/)
 * (@ripleman)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/dont-work-correctly-with-wpml-and-yoast-seo/#post-10203824)
 * I can confirm that canonical issue occurs when both WPML and Yoast SEO are enabled.
 * And there still is issue with WPML language slug detection.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Permalinks] Dont work correctly with WPML and Yoast SEO](https://wordpress.org/support/topic/dont-work-correctly-with-wpml-and-yoast-seo/)
 *  Thread Starter [ripleman](https://wordpress.org/support/users/ripleman/)
 * (@ripleman)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/dont-work-correctly-with-wpml-and-yoast-seo/#post-10139140)
 * Thanks for reply, tell if I need to provide more info.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Permalinks] Conflict with Yoast canonical url](https://wordpress.org/support/topic/conflict-with-yoast-canonical-url/)
 *  [ripleman](https://wordpress.org/support/users/ripleman/)
 * (@ripleman)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/conflict-with-yoast-canonical-url/#post-10133771)
 * I can confirm this issue when using with WPML with language slug and changed 
   post permalink + Yoast SEO plugin
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Clearfy Cache – WordPress optimization plugin, Minify HTML, CSS & JS, Defer] Remove dns-prefetch – removes all dns-refetch links, not only WP links](https://wordpress.org/support/topic/remove-dns-prefetch-removes-all-dns-refetch-links-not-only-wp-links/)
 *  Thread Starter [ripleman](https://wordpress.org/support/users/ripleman/)
 * (@ripleman)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/remove-dns-prefetch-removes-all-dns-refetch-links-not-only-wp-links/#post-10062627)
 * You remove `wp_resource_hints` in your plugin with this hook:
 *     ```
       if( $this->getOption('remove_dns_prefetch') ) {
       	remove_action('wp_head', 'wp_resource_hints', 2);
       }
       ```
   
 * WP adds by default with this function `<link rel=’dns-prefetch’ href=’//s.w.org’/
   >` and `<link rel='dns-prefetch' href='//fonts.googleapis.com' />`
 * So all this links will be removed and all links added with `wp_resource_hints`
   will not work.
 * **But there is one important thing related to “dns-prefetch”:**
    On HTTPS web
   site by default “dns-prefetch” will not work, so we need to add `<meta http-equiv
   ="x-dns-prefetch-control" content="on">` meta tag to to enable “x-dns-prefetch-
   control”, WP dont do this by default, and `wp_resource_hints` cant add this meta
   tag.
 * You can remove `wp_resource_hints` and make your own function to add links to
   header.
 * So I think it will be very useful to add custom links to header and user can 
   define there own domains with custom links and priority (output order).
    And 
   even with ability to add or exclude links for different pages. Because ‘contacts’
   page will have more links to google maps, for example.
 * And now we have more resources hints, which are very useful to speed up site 
   loading. And I think it will be very convenient to add them with UI:
    1) “dns-
   prefetch” with `<meta http-equiv="x-dns-prefetch-control" content="on">` added
   by default. 2) “preconnect” – better “dns-prefetch”, but for modern browsers 
   3) “prefetch” 4) “preload” 5) “prerender”
 * But maybe it is simple to do with another plugins, which add links to head, and
   not related to this plugin. But one of cant add links to individual pages, another
   cant set links output priority in header, another dont clean DB on uninstall,
   another have ads or need pro version, or have errors and etc.
 * _[ [Please do not bump.](https://wordpress.org/support/guidelines/#do-not-bump-posts)]_
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Disable REST API] Disable TEST API load textdomain – why wee need this?](https://wordpress.org/support/topic/disable-test-api-textdomain-why-wee-need-this/)
 *  Thread Starter [ripleman](https://wordpress.org/support/users/ripleman/)
 * (@ripleman)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/disable-test-api-textdomain-why-wee-need-this/#post-10061502)
 * Thanks for answer, I understand why we need function `load_plugin_textdomain`.
   
   So REST API loads text domains and we disable this feature, as I understand.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Clearfy Cache – WordPress optimization plugin, Minify HTML, CSS & JS, Defer] BUG: Disable comments Everywhere – not Disables Gravatars](https://wordpress.org/support/topic/bug-disable-comments-everywhere-not-disables-gravatsrs/)
 *  Thread Starter [ripleman](https://wordpress.org/support/users/ripleman/)
 * (@ripleman)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/bug-disable-comments-everywhere-not-disables-gravatsrs/#post-10052271)
 * Yes, gravatars are loading for logged in users. But after disabling all comments
   there is no “Discussions” tab in WP Settings, so you need to disable gravatars
   first, then disable comments.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Clearfy Cache – WordPress optimization plugin, Minify HTML, CSS & JS, Defer] Remove dns-prefetch – removes all dns-refetch links, not only WP links](https://wordpress.org/support/topic/remove-dns-prefetch-removes-all-dns-refetch-links-not-only-wp-links/)
 *  Thread Starter [ripleman](https://wordpress.org/support/users/ripleman/)
 * (@ripleman)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/remove-dns-prefetch-removes-all-dns-refetch-links-not-only-wp-links/#post-10010442)
 * Hello,
    In my opinion, to remove ALL dns-prefetch links in WP Code Cleaning settings
   + filter some Google links, is not suitable for all users, because you dont know
   for sure what links they can add. WP adds by default only <link rel=’dns-prefetch’
   href=’//s.w.org’ />. Other links are added by themes/plugins/users. So in WP 
   Code Cleaning option it is logically to remove only ‘//s.w.org’. Like in this
   snippet: `add_filter( 'emoji_svg_url', '__return_false' );`
 * And, for example, in Advanced Code Cleaning section you can make option to clean
   ALL dns-prefetch links and left field for users to manually add links they want.
   Or make there predefined links like ‘//fonts.googleapis.com’ ‘//maps.googleapis.
   com’ ‘//fonts.gstatic.com’ as hint or manual option for user. But maybe this 
   functional is superfluous, because caching plugins can handle it. For example
   WP Rocket have option to add custom dns-prefetch links.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Clearfy Cache – WordPress optimization plugin, Minify HTML, CSS & JS, Defer] Option: Remove field “site” in comment – adds url-span.css + url-span.js assets](https://wordpress.org/support/topic/option-remove-field-site-in-comment-adds-url-span-css-url-span-js-assets/)
 *  Thread Starter [ripleman](https://wordpress.org/support/users/ripleman/)
 * (@ripleman)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/option-remove-field-site-in-comment-adds-url-span-css-url-span-js-assets/#post-9991921)
 * delete this, duplicated

Viewing 11 replies - 1 through 11 (of 11 total)