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 [Solved] Remove Options

9 Posts
2 Users
0 Reactions
1,839 Views
Posts: 23
Topic starter
(@illinipulse)
Eminent Member
Joined: 6 years ago

Is there a way to remove the "Resolved" and "Unsolved" options?  We really don't need those functions.

 

Thanks!

IP


8 Replies
Sofy
Posts: 5648
 Sofy
Admin
(@sofy)
Support Team
Joined: 8 years ago

Hi @illinipulse,

You should uncheck the following two CANs:

  • Can set topic solved
  • Can set own topic solved

Please navigate to Dashboard > Forums > Settings > Forum Accesses admin page, edit each access and uncheck the CANs above.

More info here:

https://wpforo.com/docs/root/wpforo-settings/forum-accesses/


Posts: 23
Topic starter
(@illinipulse)
Eminent Member
Joined: 6 years ago
Posted by: @sofy

Hi @illinipulse,

You should uncheck the following two CANs:

  • Can set topic solved
  • Can set own topic solved

Please navigate to Dashboard > Forums > Settings > Forum Accesses admin page, edit each access and uncheck the CANs above.

More info here:

https://wpforo.com/docs/root/wpforo-settings/forum-accesses/

Ahhh...I looked a hundred times and missed it.  I didn't realize I had to drill deeper into the accesses area.  Thanks @sofy!


Posts: 23
Topic starter
(@illinipulse)
Eminent Member
Joined: 6 years ago

I unchecked those boxes and the two buttons are still there.  Is there a way to not display them using CSS?


Posts: 23
Topic starter
(@illinipulse)
Eminent Member
Joined: 6 years ago
Posted by: @illinipulse

I unchecked those boxes and the two buttons are still there.  Is there a way to not display them using CSS?

Here are the buttons I am referring to.

 


4 Replies
Sofy
 Sofy
Admin
(@sofy)
Joined: 8 years ago

Support Team
Posts: 5648

@illinipulse,

Please navigate to Dashboard > Forums > Settings > Styles admin page, put the following CSS code in "Custom CSS code" textarea, save it, delete all caches and check again: 

a.wpf-threads-filter.wpf-solved, a.wpf-threads-filter.wpf-unsolved {
display: none !important;
}

Please don't forget to press Ctrl+F5 (twice) on the frontend before checking. 


(@illinipulse)
Joined: 6 years ago

Eminent Member
Posts: 23
Posted by: @sofy

@illinipulse,

Please navigate to Dashboard > Forums > Settings > Styles admin page, put the following CSS code in "Custom CSS code" textarea, save it, delete all caches and check again: 

a.wpf-threads-filter.wpf-solved, a.wpf-threads-filter.wpf-unsolved {
display: none !important;
}

Please don't forget to press Ctrl+F5 (twice) on the frontend before checking. 

Thanks, @sofy.  

One more - how to remove the same two in the forum statistics are at the bottom?


Sofy
 Sofy
Admin
(@sofy)
Joined: 8 years ago

Support Team
Posts: 5648

@illinipulse,

You'll need to use the following CSS code: 

p.wpf-topic-icons span:nth-child(7), p.wpf-topic-icons span:nth-child(8) {
display: none !important;
}

(@illinipulse)
Joined: 6 years ago

Eminent Member
Posts: 23
Posted by: @sofy

@illinipulse,

You'll need to use the following CSS code: 

p.wpf-topic-icons span:nth-child(7), p.wpf-topic-icons span:nth-child(8) {
display: none !important;
}

Perfect!  Thanks @sofy