geoffmartyn
Forum Replies Created
-
Thanks for the reply.
This seems like overkill. If you look at the ICO website, and check out their Cookie solution, they mention “Some of the cookies we use are essential for the site to work.” within their cookie modal.
These would be necessary or essential cookies and are clearly set by default without any consent.
I realise you can’t comment on how they choose to deal with cookies, but if the main player in GDPR is still doing this with just over a fortnight to go until the 25th then how does that effect what we’re all doing out in the wild?
Thanks
Geoff
This is great, although is there any way to force an unload of any scripts if the user opts out?
Thanks
Geoff
Forum: Plugins
In reply to: [GDPR] Cookie blockHi @amooreto,
You are a star! Thank you – I knew it was something really simple!
That’s in now, but I still can’t get it to delete the cookie when I change the preference in the cookie popup.
In the examples here:
“…assuming you registered an analytics consent and _ga as one of the cookies used…”, the line from the my_google_opt_out function:
if ( ! has_consent( 'analytics' ) || ! is_allowed_cookie( '_ga' ) ) {…doesn’t seem to do anything.
The page also mentions that it assumes I have ‘registered an analytics consent’ but does this refer to a tab in the cookies settings page or a category name of cookie?
Is there an example online anywhere of an implementation of this plugin that will actually remove and then re-set Google Analytics cookies (for example) once it’s approved again? I’d just love to see if it’s possible, or if I’m barking up the wrong tree.
Thank you once again!
Geoff
- This reply was modified 8 years, 1 month ago by geoffmartyn.
Forum: Plugins
In reply to: [GDPR] Cookie blockHi Fernando,
Sorry, I’ve tried to add it via wp_head, but overall I’m just trying to block a single cookie so I can see how it works and then I can go from there.
function analytics_snippet() { if ( is_allowed_cookie( '_ga' ) { ?> <script> (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','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-xxxxxxxx-x', 'auto'); ga('send', 'pageview'); </script> <?php } } add_action('wp_head','analytics_snippet');- This reply was modified 8 years, 1 month ago by geoffmartyn.
- This reply was modified 8 years, 1 month ago by geoffmartyn.
Forum: Plugins
In reply to: [Strong Testimonials] Error After Last UpdateI can confirm that 2.9.2 works fine. Thanks Chris.
Forum: Plugins
In reply to: [Strong Testimonials] Error After Last UpdateYup – me too. Previous version rollback worked for me too.
Forum: Plugins
In reply to: [The Events Calendar] Events shown in reverse order/from the pastI had the exact same issue and the above code helped get rid of the error for me:
'start_date' => strtotime('now')Would it be possible to update the documentation on your site on this subject? I feel lucky I found this, and it might help some other people in the same boat!
Thanks
Geoff
Forum: Plugins
In reply to: [Ajax Load More – Infinite Scroll, Load More, & Lazy Load] JQueryThanks for looking at that Darren. It’s a strange one as nothing should be different about the admin side of things. I checked the source and thought it was loading, but you’re right – something isn’t quite right. This doesn’t look like it’s anything to do with Ajax Load More so apologies for getting you involved and I’ll take it from here.
It’s a great plug-in though and saved me a lot of time!
Cheers
Geoff
Forum: Plugins
In reply to: [Ajax Load More – Infinite Scroll, Load More, & Lazy Load] JQueryp.s. I meant to say I’d sent a login through. Please let me know if this doesn’t show up.
Forum: Plugins
In reply to: [Ajax Load More – Infinite Scroll, Load More, & Lazy Load] JQueryMany thanks Darren. Please let me know if it would also help to have an FTP login. Although this will eventually be a live site, it’s just development at the moment until we have everything up and running.
I think it must be jQuery related as the dropdowns in the side admin menu no longer work either, even though I’m sure jQuery is being loaded ok as far as I can see.
Cheers
Geoff
edit – it seems to be working now. I just need to style it. Thank you again for the prompt response.
Geoff
Ah! Sorry – I should have known that. I’m not using WordPress in the standard way and had forgotten to put
<?php wp_head(); ?>back into header.php , which will explain why the CSS and script was missing.That’s it showing up now, but it still doesn’t seem to have any effect.
Are there any other requirements I’m missing?
Thanks again,
Geoff