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] Delete Site Title

5 Posts
2 Users
0 Reactions
1,945 Views
Posts: 18
Topic starter
(@kyotomizuko)
Eminent Member
Joined: 7 years ago

hello i want to ask how to delete site title from my forum page

example :  https://surgatekno.com/forum/

my title is SurgaTekno Forum - Komunitas Gadget & Gamer Indonesia
but somehow site title is added on my forum title

SurgaTekno Forum - Komunitas Gadget & Gamer Indonesia - SurgaTekno

and how to delete "surgatekno" site title in my forum title?

tried change title from forum page using yoast but doesnt change anything

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

Hi kyotomizuko,

You can change the Forum Title from Dashboard > Forums > Settings > General > General tab.

Please read this doc: https://wpforo.com/docs/root/wpforo-settings/general-settings/#forum-title-desc

Posts: 18
Topic starter
(@kyotomizuko)
Eminent Member
Joined: 7 years ago

already change, but somehow my site title still on the end of my forum title
<title>SurgaTekno Forum – Komunitas Gadget & Gamer Indonesia – SurgaTekno</title>

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

kyotomizuko,

This designed to work this way. The first part "SurgaTekno Forum - Komunitas Gadget & Gamer Indonesia" is wpForo Forum Title (Dashboard > Forums > Settings > General tab), and the second SurgaTekno is your website's title, it comes from Site title field (Dashboard > Settings  > General). 

 

You can change it using the wpforo_seo_main_title hook. Just put this code in your current active theme functions.php file.

function my_custom_seo_title_in_forum_home($meta_title){
return (array)$meta_title[0];
}
add_filter('wpforo_seo_main_title', 'my_custom_seo_title_in_forum_home');
Posts: 18
Topic starter
(@kyotomizuko)
Eminent Member
Joined: 7 years ago

solved thank you