Skip to content
Grav 2.0 is officially stable. Read the announcement →

Community guidelines

Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.

General

Viewcounts - see pageviews per page

Started by Byrge 9 years ago · 4 replies · 989 views
9 years ago

Hi,

I’m using the viewcounts plug-in https://github.com/perlkonig/grav-plugin-count-views, but now I’m looking into how to display the “viewcounts” per page.

With a for key, value in viewcounts I get all the data in my page, but I don’t know how to get the value (viewcounts) for the page I’m currently viewing in my browser.

Anyone an idea?
Regards,
Byrge

9 years ago

I tried a lot of possible things like:
{% if viewcounts %}
viewcount : {{ viewcounts.getName(data) }}
{% endif %}

or
{{ viewcounts|first }} -- this gives me the first, but I want the count of the page I'm visiting

{{ viewcounts(value) }} or {{ viewcounts(page.route) }} or {{ viewcounts(data) }} or {{ viewcounts.data }} ...

I tried the key (data) or the slug (page.route) or the value directly, but so far no luck.

Anybody a clue how to get the correct value for the page.route slug?

The data file is:
/: 28
/blog/sunshine-in-the-hills: 91
/blog/focus-and-blur: 48

The dump is:
{"\/":28,"\/blog\/sunshine-in-the-hills":91,"\/blog\/focus-and-blur":50,"\/blog\/london-industry":1,"\/blog\/classic-modern-architecture":1}

👍 1
8 years ago

hi!
it works for me:

TWIG
{% for route,view in viewcounts %}
    {% if route == page.route() %}
        <p>count view: {{ viewcounts[route] }}</p>
    {% endif %}
{% endfor %}
8 years ago

Hi,

Thank you, I'll try out your solution.

Regards,
Byrge

8 years ago

This work very good for totally viewcount of the page but there is a way to show also the count per day?

Thanks a lot.

Suggested topics

Topic Participants Replies Views Activity
General · by Jerry Hunt, 4 days ago
2 80 10 hours ago
General · by pamtbaau, 15 hours ago
1 51 15 hours ago
General · by Andy Miller, 1 day ago
0 45 1 day ago
General · by Marcel, 12 months ago
6 346 5 days ago
General · by Duc , 5 days ago
3 40 5 days ago