How to code dead simple article hits counter?

A customer of me want’s a dead simple article counter for each article he have. Means at the creation of the article, the counter is zero, and everytime a user hits refresh in the frontend, the counter should increament for 1 … any ideas how to solve this?

Please note, no sessions or similar should be used. Really at every refresh it should go up. Similar to $var++

You can call $page->increment($field)in your template or controller.

https://getkirby.com/docs/cheatsheet/page/increment

Exact was I was looking for! Awesome :slight_smile: