If I run an SEO audit on our client’s website http://www.bvwatersports.com I find that we have the following link that is referring to an insecure site.
<link rel=”profile” href=”http://gmpg.org/xfn/11″ />
The site can be accessed via https though.
I’ve already tried to isolate which plugin is creating this link by deactivating, clearing the cache, reloading the page and then viewing the source code and that hasn’t worked after going through all of our plugins.
It’s causing 11,000+ instances of mixed content and throws the audit score off something crazy.
Does anyone have any ideas as to how I can fix this?
Hey bigwavebusiness,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Best regards,
Victoria
It doesn’t appear on the homepage anymore for some reason. But if you go to the Jet Ski page and right click > view source. Then hit control +f and search http: you will see it.
Hi,
Sorry for the late reply and thanks for the login, I see that you are using a child theme so I added the function that was causing the error and adjusted the link, this is what I added:
if(!function_exists('avia_set_profile_tag'))
{
/**
* generates the html profile head tag
* @return string the html head tag
*/
function avia_set_profile_tag($echo = true)
{
$output = apply_filters('avf_profile_head_tag', '<link rel="profile" href="https://gmpg.org/xfn/11" />'."\n");
if($echo) echo $output;
if(!$echo) return $output;
}
add_action( 'wp_head', 'avia_set_profile_tag', 10, 0 );
It is from the \enfold\framework\php\function-set-avia-frontend.php
file.
Please try checking your source code now.
Best regards,
Mike