Notifications
Clear all

wpForo 1.x.x [Solved] Issues with forum page title and forum menu translation

8 Posts
4 Users
1 Likes
1,256 Views
Posts: 42
Topic starter
(@nican)
Trusted Member
Joined: 4 years ago

Hello,

I have a couple of issues, unfortunately I cannot give you a link because the site is still offline.

 

1 - Forum page title shows up in frontend even if I have selected Show "Forum Page Title > NO" in forum settings

maybe because I am visiting the site ad administrator in frontend?

2 - I have translated the forum menu items in italian via the .PO and .MO files (using POedit). All other translations shows nicely, but the forum menu items are still in english. I can't understand why (see https://www.screencast.com/t/pgQGU9Zav)

seee also: https://www.screencast.com/t/H3xcjrX3

 

Thank you for any help!

 

 

7 Replies
Alvina
Posts: 1869
Moderator
(@alvina)
Member
Joined: 4 years ago

Hi @nican,

1 - Forum page title shows up in frontend even if I have selected Show "Forum Page Title > NO" in forum settings

Please navigate to Dashboard > Forums > Dashboard click on [Delete all caches] button and check again (press CTRL+F5 on the forum frontend).

2 - I have translated the forum menu items in italian via the .PO and .MO files (using POedit). All other translations shows nicely, but the forum menu items are still in english. I can't understand why (see https://www.screencast.com/t/pgQGU9Zav)

Please follow the following support topic to translate the menu:

https://wpforo.com/community/how-to-and-troubleshooting-2/change-titles-text-in-top-menu-bar/#post-16007

 

3 Replies
(@nican)
Joined: 4 years ago

Trusted Member
Posts: 42

@alvina

thank you for the tips for translating the menu; I didn't realize it was a standard wordpress menu

 

I followed your suggestion but I am still unable to hide the forum title (the site cache is disabled and I have cleaned several times the forum cache

forum page title setting in backend
https://www.screencast.com/t/SsuJP8oX8Me

forum title frontend
https://www.screencast.com/t/HfghznpRHLRf

 

what if I just add some custom css like

#wpforo #wpforo-wrap #wpforo-title {
visibility: hidden;
height: 10px;
}

would this affect other elements?

 

Thankk you

 

Robert
Admin
(@robert)
Joined: 8 years ago

Support Team
Posts: 10499

@nican

The title you're showing is not the page title. your page title is already disabled. This is the forum title, this will be changed to topic title on topic page and so on. If you disable this you'll not see forums and topic titles. This should not be disabled, and there is no option to disable that.

 

(@nican)
Joined: 4 years ago

Trusted Member
Posts: 42

@robert Oh I see.. thank you!

 

MikOr
Posts: 4
(@mikor)
Active Member
Joined: 4 years ago

Hi,

I have exactly the problem "nican" described in his paragraph 1:

"Forum page title shows up in frontend even if I have selected Show "Forum Page Title > NO" in forum settings"

But this problem is only if forum set on home page: http://<my_domain_name>/

No problem if the page has an address: http://<my_domain_name>/community/  

 

2 Replies
Robert
Admin
(@robert)
Joined: 8 years ago

Support Team
Posts: 10499
Posted by: @mikor

Hi,

I have exactly the problem "nican" described in his paragraph 1:

"Forum page title shows up in frontend even if I have selected Show "Forum Page Title > NO" in forum settings"

But this problem is only if forum set on home page: http://<my_domain_name>/

No problem if the page has an address: http://<my_domain_name>/community/  

Hi @mikor,

Try the following CSS Code. Put it in the Top Admin Bar > Customize > Additional CSS > Custom CSS Code textarea. Save it, delete all caches and check.

.wpforo .entry-title{display:none}
MikOr
(@mikor)
Joined: 4 years ago

Active Member
Posts: 4

Hi @robert .

Now the page looks as it should.

Thank you!