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.

 

[Solved] Remove text from buttons

6 Posts
3 Users
2 Reactions
813 Views
sazdoes
Posts: 48
Topic starter
(@sazdoes)
Trusted Member
Joined: 5 years ago

Is it possible to remove the text from the post buttons? I  tried using 

.wpf-button-text {
display: none;
}

but that doesn't seem to work.

5 Replies
Alvina
Posts: 1861
Moderator
(@alvina)
Member
Joined: 6 years ago

Hi @sazdoes,

Just add the !important statement after the property, or simply use the following one:

.wpf-button-text {
display: none !important;
}
sazdoes
Posts: 48
Topic starter
(@sazdoes)
Trusted Member
Joined: 5 years ago

Works great, thank you!

Posts: 44
(@gilbau)
Trusted Member
Joined: 5 years ago

I have a near similar request , i want to remove the reply button in the threaded theme to force users to answer with the main reply button at the end of the topic

1 Reply
Alvina
Moderator
(@alvina)
Joined: 6 years ago

Member
Posts: 1861

@gilbau,

Try the following CSS code:

#wpforo #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-reply .wpf-action {
display: none;
}

The code should be added in the Dashboard > Forums > Settings > Styles admin page "Custom CSS Code" textarea.

In any case please don't forget to delete all caches and press CTRL+F5(twice) on the frontend before checking.

Posts: 44
(@gilbau)
Trusted Member
Joined: 5 years ago

thanks very much : that works fine