Published

I added small JS code to have a feature like What Would Seth Godin Do WP plugin

On my homepage, I added a small Javascript code:

<div id=”message”></div>

<style>
#message {
background: #fff8c4;
border: 1px solid #e6d46a;
padding: 15px;
margin: 20px 0;
border-radius: 4px;
}

#message a {
font-weight: bold;
}
</style>

<script>

function show(text) {
document.getElementById(“message”).innerHTML = text;
}

const visits = Number(
localStorage.getItem(“visits”) || 0
);

localStorage.setItem(
“visits”,
visits + 1
);

if (visits < 5) {

show(`
<strong>New visitor?</strong><br>
If you’re new here, you may want to
subscribe to my
<a href=”https://wfdoujin.com/rss.xml”>
RSS feed
</a>.
`);

} else {

show(`
<strong>Welcome back!</strong><br>
You’ve visited this site ${visits} times.
`);
}
</script>

 

And result like the image below.

Reply via Webmention

Send me

Reply via email