Tagged: cookie message
-
AuthorPosts
-
April 29, 2018 at 10:31 pm #948732
Hi there!
I’m not using the cookie popup for that, I’m using it as a message, it seems once i dismiss it once, it never comes up again when I revisit the site.
Is there a way to have it come up each visit?
May 1, 2018 at 2:56 pm #949552Hey,
Please go to enfold/js/avia-snippet-cookieconsent.js file in Appearance > Editor and find
date.setTime(date.getTime()+(CookieDays*24*60*60*1000));
and change it to following
date.setTime(date.getTime()+(30 * 60 * 1000));
That would reset after every 30 minutes.
Best regards,
YigitMay 7, 2018 at 3:40 pm #952725Hi Yigit
Just a short follow up on this:
What does (CookieDays*24*60*60*1000) indicate – or: How do I see or set expiration date? Could I prolong to “forever” if wanted?Best regards
May 8, 2018 at 8:24 am #953210Hi nonne,
Here is a thread for you to consider
https://stackoverflow.com/questions/532635/javascript-cookie-with-no-expiration-dateIf you need further assistance please let us know.
Best regards,
VictoriaMay 8, 2018 at 9:59 am #953269Hi Victoria
Thanks for answering.
However I don’t quite get the idea with the article you are referrring to…For changes of cookie consent expiration data Yigit was referring to enfold/js/avia-snippet-cookieconsent.js
– this line: date.setTime(date.getTime()+(CookieDays*24*60*60*1000));What I was asking was: What does (CookieDays*24*60*60*1000) indicate – or: How do I see or set expiration date? Could I prolong to “forever” if wanted?
Best regards
May 9, 2018 at 11:40 am #953829Hi,
You can try changing the code to following one to set expiration date to 10 years
date.setTime(date.getTime()+(10 * 365 * 24 * 60 * 60));
Best regards,
YigitMay 9, 2018 at 11:50 am #953836Hi Yigit
Thanks a lot – as usual :-)
Just to understand: The original one:
date.setTime(date.getTime()+(CookieDays*24*60*60*1000));
– did that mean 24 hours?And finally: “CookieDays” is missing in your new code? Is that OK?
Very best regards
May 9, 2018 at 11:56 am #953843Hey,
Date is set using current date + 10 * 365 * 24 * 60 * 60 (315360000 seconds in total which corresponds 10 years). You can adjust values without using “CookieDays” in the code :)
Cheers!
YigitMay 9, 2018 at 4:17 pm #954022Hi again Yigit
Thanks a lot. Got it :-)
Best regards
May 9, 2018 at 4:19 pm #954024Hi,
@nonne You are welcome! :)We will keep the thread open and will wait to hear from the creator of this thread. If you have any other questions or issues, please feel free to start a new thread.
Best regards,
YigitJune 14, 2018 at 12:25 pm #972792Hi, to set 7 days
date.setTime(date.getTime()+(CookieDays*7*24*60*60*7));
is it correct?
However there is a problem. After accepting cookies, going to other pages of the site, the cookies window reappears!- This reply was modified 6 years, 5 months ago by lion73.
June 18, 2018 at 4:50 am #974083Hi,
Thanks for the update. That should not be the case after confirming the consent. Did you check if cookies is enabled in your browser?
Best regards,
IsmaelJune 18, 2018 at 7:24 pm #974421Hi ismael, of course, cookies are enabled…
June 19, 2018 at 10:48 am #974682 -
AuthorPosts
- You must be logged in to reply to this topic.