Hi, a quick question:
Using 2.9.2, I am not able to remove this from header.php, I mean: even being commented out, this stuff seems duplicated. Am I doing something wrong or a bug ?
Commented out in header.php
<!-- add feeds, pingback and stuff
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="alternate" type="application/rss+xml" title="MyBlog Blog RSS2 Feed" href="http://subdomain.myblog.com/feed/" />
<link rel="pingback" href="http:///subdomain.myblog.com/xmlrpc.php" /> -->
This still appears in headers, just before html5shiv:
<link rel='canonical' href='http://subdomain.myblog.com/12/' />
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="alternate" type="application/rss+xml" title="MyBlog Blog RSS2 Feed" href="http:///subdomain.myblog.com/feed/" />
<link rel="pingback" href="http:///subdomain.myblog.com/xmlrpc.php" />
<!--[if lt IE 9]><script src="http:///subdomain.myblog.com/wp-content/themes/enfold/js/html5shiv.js"></script><![endif]-->
Thank you
Cheers!
Hi macatokio!
Are you using any SEO plugins and/or a Child theme with the header.php in place to replace the parent?
Best regards,
Devin
Hi Devin,
Just using BWP Minify plugin, as being suggested in this forum. Same result once disabled ;-) should I try something else ?
Cheers !
Hi!
Please update the theme to Enfold 3.0. Add this on functions.php:
remove_action( 'wp_head', 'avia_set_rss_tag', 10, 0 );
remove_action( 'wp_head', 'avia_set_pingback_tag', 10, 0 );
remove_action( 'wp_head', 'avia_set_profile_tag', 10, 0 );
Best regards,
Ismael
Updated and fixed.
Thank you, Ismael.