ripleman
Forum Replies Created
-
I use blocked Yoast SEO in Updates Manager, when I unblock it, this issue gone. And i have Yoast SEO Premium version.
This behavior is caused by Yoast plugin.
Maybe this is not Updates manager issue.- This reply was modified 7 years, 9 months ago by ripleman.
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 1219Forum: Plugins
In reply to: [Custom Permalinks] Dont work correctly with WPML and Yoast SEOI 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
In reply to: [Custom Permalinks] Dont work correctly with WPML and Yoast SEOThanks for reply, tell if I need to provide more info.
Forum: Plugins
In reply to: [Custom Permalinks] Conflict with Yoast canonical urlI can confirm this issue when using with WPML with language slug and changed post permalink + Yoast SEO plugin
You remove
wp_resource_hintsin 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_hintswill 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, andwp_resource_hintscant add this meta tag.You can remove
wp_resource_hintsand 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.
Forum: Plugins
In reply to: [Disable REST API] Disable TEST API load textdomain – why wee need this?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.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.
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.
delete this, duplicated