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.
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;
}
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.
Thank you Robert