rhum_un
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Stop “noopener noreferrer” tags from auto-insertJust in case someone was interested by my last question, i found the solution by adding this script on the head section of my pages. No need to track manually every links anymore. The script tracks every outbound links throught Google Analytics ??
<script>
jQuery(document).ready(function(){
jQuery(‘a’).click(function(){
ancre = this.href;
parseAncre = document.createElement(‘a’);
parseAncre.href = ancre;
hostnameAncre = parseAncre.hostname;currentPage = document.location.href;
parseCurrentPage = document.createElement(‘a’);
parseCurrentPage.href = currentPage;
hostnameSite = parseCurrentPage.hostname;if(hostnameAncre != hostnameSite){
ga(‘send’, ‘event’, ‘Lien sortant’, currentPage, ancre);
}return true;
});
});
</script>Forum: Fixing WordPress
In reply to: Stop “noopener noreferrer” tags from auto-insertHello Zubee,
I don’t want to remove rel=”nofollow referrer noopener” but when wordpress updates my code, it also delete my OnClick code so i’m not able to track event on outbound links. I’m wondering if there is another solution to count events.
Forum: Fixing WordPress
In reply to: Stop “noopener noreferrer” tags from auto-insertI’ve the same issue. I have a link like :
<a href="page1.html" target="_blank" rel="nofollow" onClick="ga('send','event','display','click','objet1');">my link</a>
when i update my article, wordpress changes the code :
<a href="page1.html" target="_blank" rel="nofollow noopener noreferrer">my link</a>
So wordpress changes the rel=”nofollow” with rel=”nofollow noopener noreferrer” but it also delete the tracking events code
onClick="ga('send','event','display','click','site1');"
Does someone knows how to do to keep the tracking code?
Forum: Plugins
In reply to: [Social Profiles Widget] [Plugin: Social Profiles Widget] – needs Pinterest+1
Hi everyone,
i’ve deactivated and deleted Google Simple Map and it didn’t solve the problem. I hope the community will make a patch for this problem.
Hi Olivier,
Could you tell me how you solve your problem? It seems to work now on your website. I have kind of this problem on mine https://www.aufildessiecles.fr
Hi everyone,
I’m using NextGen Gallery V1.9.1.
Since i’ve updated WordPress V3.3, I’ve got the same problem as described by vytaulla51 on my website gallery aufildessiecles
Changing theme or effect doesn’t solve the problem.
Any suggestion?