• Resolved Danishsard

    (@danishsard)


    Hi, is there any short code that the forum statistics themselves will display on the given page? For example, I use a short code to show only one forum of topics list – but under the ground I would like to show statistics of the forum or can it be so?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Asgaros

    (@asgaros)

    Hello @danishsard

    Basically its possible to show the statistics below a forum by calling the showStatistics() function. However, statistics are globally and not based on the shown sub-forum only.

    Thread Starter Danishsard

    (@danishsard)

    Yes I know, but I only have 1 forum and I used the shortcode forum id to display a list of topics right away without going to it.

    But how to use this hook?

    Plugin Author Asgaros

    (@asgaros)

    Hello @danishsard

    Please try to add the following code to your themes functions.php file:

    function show_statistics() {
    	AsgarosForumStatistics::showStatistics();
    }
    add_action('asgarosforum_forum_custom_content_bottom', 'show_statistics');
    Thread Starter Danishsard

    (@danishsard)

    It works, nice fixing, Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Forum statistics’ is closed to new replies.