How to display node hit in drupal?

I want to add a page page to the nodes on my drupal site. How can i do this?

+4
source share
4 answers

Use the built-in statistics module to add a clean page counter. If you want to display the number of unique visitors who visit the page, you will need to use the "Advanced Statistics Module" . This module counts the number of unique IP addresses per visit, and the Drupal kernel statistics module increments the counter every time a node is scanned.

+6
source

What could be simpler: Node view count module ": http://drupal.org/project/nodeviewcount

I also joined this other useful module "Visitors": http://drupal.org/project/visitors

Hope this helps ... the options are always good :)

+1
source

A built-in statistics module offers this.

0
source

After enabling the statistics module, you can enable / disable and configure it here: Administration → Reports → Access log parameters (admin / reports / settings). There is also a configuration for the Advanced Advanced Statistics module.

0
source

Source: https://habr.com/ru/post/1332554/


All Articles