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.
Hello earlier this week you helped me fix my posts icon by using this code.
#wpforo #wpforo-wrap .fa-reply::before {
content: "\f112" !important;
}
That worked for posts icon but some of my other icons are still rectangles which includes: Latest Post:, Unread Posts, and Login Button. Can you please help me?
Thank you, Look forward to talking to you soon…
Do you know that your website theme uses a very old outdated Font-Awesome Lib? Its outdated lib affects all wpForo icons. We recommend either:
1. Find an option in your theme and disable the Font-Awesome Lib. Then navigate to Dashboard > Forums > Settings > Features admin page and enable wpForo Font-Awesome for whole website:
2. OR put this CSS code in Dashboard > Forums > Settings > Styles > Custom CSS Code textarea. Save it delete all caches and check it.
#wpforo #wpforo-wrap .fas{
font-family: "Font Awesome 5 Free" !important;
font-weight: 900 !important;
top: 0 !important;
}
#wpforo #wpforo-wrap .far{
font-family: "Font Awesome 5 Free" !important;
font-weight: 400 !important;
top: 0 !important;
}
#wpforo #wpforo-wrap .fab{
font-family: "Font Awesome 5 Brands" !important;
top: 0 !important;
}
IMPORTANT: The both solutions will fix all icons. So you should remove the old CSS code we provided before. i mean this CSS code should be removed:
#wpforo #wpforo-wrap .fa-reply::before {
content: "\f112" !important;
}