Notifications
Clear all

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.

 

wpForo 1.x.x [Solved] How to remove voting on the first post in a question

3 Posts
2 Users
0 Reactions
1,644 Views
Posts: 38
Topic starter
(@annabwashere)
Trusted Member
Joined: 7 years ago

I am using the Q&A to allow members to enter a competition. The "question" has been repurposed into the details of the competition and doesn't need to have voting buttons on it.

I have tried using CSS to hide it but it only works on desktop, not mobile:

#wpforo #wpforo-wrap .wpfl-3 .cat-stat-posts, #wpforo #wpforo-wrap .wpfl-3 .cat-stat-answers, #wpforo #wpforo-wrap .wpfl-3 .cat-stat-questions, #wpforo #wpforo-wrap .wpfl-3 .wpforo-forum-stat-questions, #wpforo #wpforo-wrap .wpfl-3 .wpforo-forum-stat-answers, #wpforo #wpforo-wrap .wpfl-3 .wpforo-forum-stat-posts {display:none;}

#wpforo #wpforo-wrap .wpfl-3 .wpforo-last-topic {width: 20%!important;}

#wpforo #wpforo-wrap .wpfl-3 .wpfp-first .wpforo-post .wpf-left {display:none;}
#wpforo #wpforo-wrap .wpfl-3 .wpfp-first .wpforo-post .wpf-right {margin-left:0!important;}

@media screen and (max-width: 480px) {
#wpforo #wpforo-wrap .wpfl-3 .wpfp-first .wpforo-post .wpf-left {display:none;}
#wpforo #wpforo-wrap .wpfl-3 .wpfp-first .wpforo-post .wpf-right {margin-left:0!important;}
}

I've deleted all caches (wpforo, Supercache, Cloudflare, browser) and set Cloudflare in dev mode but the changes don't appear on mobile.

Topic Tags
2 Replies
Sofy
Posts: 5486
 Sofy
Admin
(@sofy)
Support Team
Joined: 8 years ago

Hi @annabwashere,

Please test it on other mobile devices or try on incognito mode. Because mobile browsers have a hard cache, you'll not be able to see the change immediately.  

As far as I see there shouldn't be an issue. The CSS code is correct. 

1 Reply
(@annabwashere)
Joined: 7 years ago

Trusted Member
Posts: 38

Incognito mode worked! Thanks!