Notifications
Clear all

[Solved] Remove text from buttons

6 Posts
3 Users
2 Likes
529 Views
sazdoes
Posts: 48
Topic starter
(@sazdoes)
Trusted Member
Joined: 4 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: 1869
Moderator
(@alvina)
Member
Joined: 4 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: 4 years ago

Works great, thank you!

Posts: 44
(@gilbau)
Trusted Member
Joined: 3 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: 4 years ago

Member
Posts: 1869

@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: 3 years ago

thanks very much : that works fine