Notifications
Clear all

wpForo 1.x.x [Solved] Pre-sale. Can one remove the "views" and "votes" numerical display boxes

5 Posts
3 Users
0 Likes
1,466 Views
Posts: 14
Topic starter
(@quizzical)
Eminent Member
Joined: 5 years ago

I am interested in a very clean page for a professional audience. Ideally it will show the question and number of answers.

Thus I would like to remove "views", "votes", statistics, and side bar. Since I am handling registration and login and profile through another plugin, I would like to also remove reference to those items. Can this be done without too much difficulty? I am a WordPress novice.

Thank you.

4 Replies
Sofy
Posts: 4233
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

Hi quizzical,

There is the Show Forum Statistic option, that allows disabling forum statistic. The option is located in Dashboard > Forums > Settings > Features admin page. 

The wpForo menu is a regular WordPress menu. You can add/remove any menu item in wpForo top menu bar using WordPress settings in Appearance > Menus admin page. On this page, you should select wpForo Navigation menu and manage it.

More info here:  https://wpforo.com/docs/root/getting-started/forum-menu/

The "views", "votes" items can be removed using CSS code. Just Navigate to Dashboard > Forums > Settings > Styles admin page, put the following CSS code in "Custom CSS Code" textarea, save it, delete all caches, do CTRL+F5 on the frontend. 

#wpforo #wpforo-wrap .votes, {
display: none !important;
}
#wpforo #wpforo-wrap .views {
display: none !important;
}
1 Reply
(@quizzical)
Joined: 5 years ago

Eminent Member
Posts: 14

Thank you Sofy!

One more question please.

Is it possible to insert the forum into a page builder (elementor) page using shortcodes?

Thank you.

Robert
Posts: 10499
Admin
(@robert)
Support Team
Joined: 8 years ago

Yes, it should work. Just use the main [wpforo] shortcode. Then navigate to Dashboard > Forums > Settings > General Tab and make sure the forum Base URL (slug) matches to the page URL (slug) you've inserted forum  shortcode.

 

Posts: 14
Topic starter
(@quizzical)
Eminent Member
Joined: 5 years ago

Thank you Robert