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] Button Translations

5 Posts
2 Users
0 Reactions
1,602 Views
Posts: 9
Topic starter
(@eranshefi)
Active Member
Joined: 6 years ago

Hi

I use the Private Messages addon.

Translated to Hebrew most of it, but can't make the main "Send a Message" button show my translation.

Another thing is that the button is not located well, and is going out of the page (screenshot).

Thanks

4 Replies
Sofy
Posts: 5483
 Sofy
Admin
(@sofy)
Support Team
Joined: 8 years ago

Hi @eranshefi,

All wpForo phrases are located in Dashboard > Forums > Phrases admin page. Just find the phrase and translate it to your language.

If you can’t find some phrase you can either add it using [Add new] button or navigate to Dashboard > Forums > Dashboard admin page, click on "Rebuild Phrases" button and try to find the phrase again. 

Please don’t forget to delete phrase cache in Dashboard > Forums > Dashboard admin page.

More info here:  https://wpforo.com/docs/root/translation/quick-translation-phrases/

3 Replies
(@eranshefi)
Joined: 6 years ago

Active Member
Posts: 9

Thanks. It worked!

What about the button being cropped?

https://mitzpe-ramon.com/forums/

Sofy
 Sofy
Admin
(@sofy)
Joined: 8 years ago

Support Team
Posts: 5483

@eranshefi,

What about the button being cropped?

Add the Following CSS code in "Custom CSS code" textarea, it should solve the issue. 

#wpforo #wpforo-wrap .wpforo-profile-wrap .wpfpm-message-div {
right: 6% !important;
}

I see another CSS conflict with the active theme or other plugins related to avatar size (see screenshot). It's a little smaller than it should be. To solve the issue just add the following CSS code in "Custom CSS code" textarea as well and check again:

#wpforo #wpforo-wrap .wpforo-profile-wrap .h-picture .avatar{
width: 100% !important;
}

Please don't forget to delete all caches before checking.

(@eranshefi)
Joined: 6 years ago

Active Member
Posts: 9

Cool! Thanks!