Notifications
Clear all

Limited Support

Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.

We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!

Merry Christmas and Happy Holidays! 🎄

wpForo 1.x.x [Closed] I want the number of questions for all forums

6 Posts
2 Users
3 Reactions
1,059 Views
tqarb
Posts: 45
Topic starter
(@tqarb)
Trusted Member
Joined: 5 years ago

Hello I have deleted the people who are online now from the forum stats in the footer
And I added this instead

<?php wpforo_print_number(wpfval(WPF()->current_object['user'], 'questions'), true) ?>

But I want the number of questions for all forums
What is the correct code?


5 Replies
tqarb
Posts: 45
Topic starter
(@tqarb)
Trusted Member
Joined: 5 years ago

i have add

<?php echo wpforo_print_number($stat['questions']) ?>

but not working


Tutrix
Posts: 1521
(@tutrix)
Noble Member
Joined: 6 years ago

Questions & Answers layout
forum.php

<div class="wpforo-forum-stat-questions"><?php echo wpforo_print_number($counts['topics']) ?></div>
<div class="wpforo-forum-stat-answers"><?php echo wpforo_print_number(WPF()->topic->get_sum_answer($data)) ?></div>
<div class="wpforo-forum-stat-posts"><?php echo wpforo_print_number($counts['posts']) ?></div>

try this one

<?php echo wpforo_print_number($counts['topics']) ?>

1 Reply
tqarb
(@tqarb)
Joined: 5 years ago

Trusted Member
Posts: 45

@tutrix thank you so much but it didn't work


Tutrix
Posts: 1521
(@tutrix)
Noble Member
Joined: 6 years ago

@tqarb

It was worth a try 😉 

I don't use the Questions & Answers layout,
therefore unfortunately cannot test it


tqarb
Posts: 45
Topic starter
(@tqarb)
Trusted Member
Joined: 5 years ago

Thank you for trying to help me 🌹 
I will look for other solutions