Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

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

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

i have add

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

but not working

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

Trusted Member
Posts: 45

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

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

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