Notifications
Clear all

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

6 Posts
2 Users
3 Likes
538 Views
tqarb
Posts: 45
Topic starter
(@tqarb)
Trusted Member
Joined: 3 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: 3 years ago

i have add

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

but not working

Tutrix
Posts: 1212
(@tutrix)
Noble Member
Joined: 4 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: 3 years ago

Trusted Member
Posts: 45

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

Tutrix
Posts: 1212
(@tutrix)
Noble Member
Joined: 4 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: 3 years ago

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