I need help with cookies

chiefoccupy

Banned - Multiple Rules Violations
Joined
Apr 3, 2022
Messages
203
Reaction score
49
Hy

Can anyone tell me how to specific <div> to show only once per user in 24 hours?

I use wordpress themes, and want to show specific ad only once per user in 24 hours.

Also I would like to know how to restart cookies for that <div>.

Thanks in advance
 
are you looking for a plugin to do this or do you want inject some JavaScript? if JavaScript you can make use of local storage to store something like the add name and time that way you can check the local storage when the user loads the page and hide the divs accordingly.
 
Hy

Can anyone tell me how to specific <div> to show only once per user in 24 hours?

I use wordpress themes, and want to show specific ad only once per user in 24 hours.

Also I would like to know how to restart cookies for that <div>.

Thanks in advance
A combination of IP detection techniques and php can solve it, I think. I have a basic knowledge of php.
 
Seems to me that this is what you are looking for:
(adding and reading a cookie using code in the functions.php file)
https://www.wpbeginner.com/wp-tutorials/how-to-set-get-and-delete-wordpress-cookies-like-a-pro/#:~:text=Under%20content%20settings%2C%20you%20will,by%20all%20websites%20you%20visited.
Good luck!
 
Back
Top