@kota,
1、guest
・Can guest click “like” button? In the manual, wpforo provides this function only for registers users. But I would like to provide for guest, too.
・Is guest included the target of rating and ranking function? Or only for registered users?
. Sorry, but guests cannot click on the like button.
. Yes, the guests included in the rating system. The rating system is based on the count of posts.
2、Hamburger button (smartphone) → image 1
・How can I remove the menu of members/recent posts/log in?
・Please tell me how to change “forum” into “home”.
. Please navigate to Dashboard > Appearance > Menu > Edit Menus tab in the "Menu structure" section find the menu you want to delete then click on Custom Link and Remove the menu you want.
. Please read this documentation to see how to change the navigation label from "forums" to "home":
https://wpforo.com/docs/root/getting-started/forum-menu/
3、Breadcrumbs → image smartphone/image PC
・Home icon is missing in only smartphone, how can I do to show the icon? I can see a phrase in PC website.
・In PC website, it’s phrase. Can I change it into home icon? (ex. <i class="fas fa-home"></i>)
As you can see in the screenshot provided below home icon is visible.
4、Profile → image 2
Can I disable 3 icons, group name, and chain icon?
Use the following CSS code:
.wpf-post-btns a {
display:none;
}
#wpforo #wpforo-wrap .wpfl-2 .wpforo-post .wpf-left .wpf-member-profile-buttons {
display: none !important;
}
#wpforo #wpforo-wrap .wpfl-2 .wpforo-post .wpf-left .author-title {
display: none !important;
}
5、Post form → image 3
Can I remove following text and icon?
Please use the following code:
.mce-statusbar .mce-container-body {
display: none
};
6、Simplified → image 4/5
I would like to show forum description only on the forum page, and remove it from category page. Could you let me know how to do?
Please use the following code:
.wpforo-last-topics-list {
display: none !important;
}
All CSS codes should be added in Dashboard > Forums > Settings > Styles admin page "Custom CSS code" textarea. Don't forget to delete all caches and press CTRL+F5(twice) on the frontend before checking.