bir reklama tıklandığında bir sonraki ayara kadar tekrar göstermesin..
İnternette bir kod buldum ama çalışmıyor.
Ücretli yardım edebilecek varsa lütfen ulaşsın.
<script></script>
<script>
jQuery(function($) {
// get current date
var nowDate = new Date();
var date = nowDate.getDate()+'/'+(nowDate.getMonth()+1)+'/'+nowDate.getFullYear();
// if any element with class ads is clicked
$('.ads').on('click', function () {
// store current date on user local storage - you can change this value!
localStorageSetItem("date", date);
});
});
$(document).ready(function() {
// check whether current date is recorded on the user's local storage
var prevDate = localStorageGetItem("date");
if (!prevDate || prevDate != date) {
// serve ads
$('.ads').show();
} else {
// don't serve ads (serve something else - eg. show donations link)
}
});
</script>