Travelographer
Forum Replies Created
-
Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Gtmetrix and Pagespeed degraded with Cookie lawHi @eexplore
I’m currently experiencing the same thing. I have already changed my caching vendor. It doesn’t matter if Autoptimize, WP Super Cache, Cache Enabler. The cookies plugin stops the entire caching process.
I also hope for an answer.
Here’s my lastest post which also claimed this issue!
https://www.ads-software.com/support/topic/incompatibility-with-autoptimize-2/- This reply was modified 5 years, 9 months ago by Travelographer.
Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Incompatibility with AutoptimizeThanks for caring about this plug in.
Unfortunately, your solution didn’t solve my problem.
Regards,
TravelographerForum: Plugins
In reply to: [Ginger - EU Cookie Law] Opt-In doesn’t work – GA is active onloadHi @asilva2,
Ginger Cookies alway embed the .min.js files. So please consider to change the code in these files as well ??
Regards
Hi @jeherve
Thanks for your competent answer and pointing out that not all reported issues are Jetpack related.
Until the problem is solved, I would recommend that you deactivate the “Search” and the Sharing features in the Jetpack settings on your site.
Unfortunately, deactivating both features didn’t solve the issue.
Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Opt-In doesn’t work – GA is active onloadHi guys,
unfortunately the official support didn’t respond so far. As it is an important GDPR issue, I’ve tried to solve it by my own.
In the folder ginger\addon\analytics you can find the javascript that is added when some pushes the accept button. (gingeranalytics.js & gingeranalytics.min.js)
There you can also find the anonymize code you mentioned @johannes89
So, if you really want an opt-in that your user have to consent for getting tracked by GA, then you just simply replace the original code with the following code in the file gingeranalytics.js
/** * Created by matteobarale on 09/07/15. */ function gingeranalytics(code) { console.log(code); console.log(getCookie('ginger-cookie')); if(getCookie('ginger-cookie') == 'Y'){ var gacode = "ga('create', '" + code + "', 'auto'); ga('set', 'anonymizeIP', true); ga('send', 'pageview');"; var scriptanalytics = document.createElement('script'); scriptanalytics.type = 'text/javascript'; scriptanalytics.innerHTML = '(function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){' +'(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),' +'m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)' +'})(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'ga\');' + gacode; console.log(scriptanalytics); document.getElementsByTagName('head')[0].appendChild(scriptanalytics); }else{ } } function getCookie(cname) { var name = cname + "="; var ca = document.cookie.split(';'); for(var i=0; i<ca.length; i++) { var c = ca[i]; while (c.charAt(0)==' ') c = c.substring(1); if (c.indexOf(name) == 0) return c.substring(name.length,c.length); } return ""; }
- This reply was modified 6 years, 10 months ago by Travelographer.
Hi @tmmbecker,
Thanks for your answer.
It’s already a few weeks ago that I’ve deactivated WP Stats. I also deactivated caching on my website ..
In addition this issue is reproducable. When I rename the jetpack plugin folder, the issue is gone. When I name it back, the issue occurs again.
For me it seems that Jetpack collects user data without consent.
Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Block instagramHi Marcella,
I’m not from the official support, but I solved the problem by manually adding the instagram domain in the manual JS block area.
Hi @gemmaevans,
Thank you for your fast response.
I use Ghostery and uBlock Origin to detect third party content and tracker. The html detected on search pages looks like that:
<img src="https://pixel.wp.com/boom.gif?v=0.9&u=https%3A%2F%2Fwww.travelography.de&json=%7B%22beacons%22:%5B%22jetpack.search.mysql.duration:72%7Cms%22,%22jetpack.search.mysql.duration:1%7Cms%22%5D%7D" alt=":)" width="1" height="1" />
And I have no clue why it is added only on search result pages.
Thanks
Travelographer- This reply was modified 6 years, 10 months ago by Travelographer.
Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Cookies get unblocked without acceptingWould be great, if you could mention the plugin that caused the problem. It may help other people.
Forum: Themes and Templates
In reply to: [Dazzling] Fullwidth Related Post SizeDo you want to display all comment replies having same margin as comment on depth 2?
Exactly
Forum: Themes and Templates
In reply to: [Dazzling] Fullwidth Related Post SizeThank you Vinod Dalvi for your fast response!
I will have a look on the posted links.
There is something else, I don’t get .. Do you know how to change the list-depth of the replies in the comment section? For example that every response on a comment is on depth 2.
Thank you in advance
ChristianHi Jersey Girl,
I had the same problem a few days ago.
The reason for my problem was a comment in the first line of code.
After removing the comment the php code was executed.
Hope, I could help you!
Christian
I solved it …
You just have to deactivate the additional widget feature of JetPack. It doesn’t matter, if you use the Facebook-Like-Box or not. The facebook tracker is always embedded :/
Forum: Themes and Templates
In reply to: [Dazzling] [Bug] Blurry images in sliderHey Movin,
thanks for your reply.
I still have some bug regarding the resolution.
Watching my website (https://www.travelography.de) on a tablet leads to different resolution bugs:
1. Really tiny slider images and non clickable content
2. Blurred images in the article sectionIt also seems to be a problem of the wp 4.4 update because it occurs on your demo site as well.
Cheers
ChristianForum: Themes and Templates
In reply to: [Dazzling] [Bug] Blurry images in sliderHi Movin,
thanks for your link.
I’ve already solved the bug by adding this code in my functions.php
function filter_max_srcset( $max_width, $size_array ) { if ( $size_array[0] === 1920 ) { $max_width = 1920; } return $max_width; } add_filter( 'max_srcset_image_width', 'filter_max_srcset', 10, 2 );