Changing Forum Title
2 posters
Page 1 of 1
Changing Forum Title
Hey! So I have the portal page as the homepage, but in the title it says "Finery Workshop - Portal" while in the forum it says "Finery Workshop" How do I change it to where in the portal it says "Finery Workshop" and when you're in the forum it says "Finery Workshop - Forum" I tried changing it within the templates and it didn't work
Thank you so much if you can help!
Thank you so much if you can help!
Re: Changing Forum Title
Hello @FineryWorkshop,
You can remove the portal title in portal management, but it causes problems with the button text. We can make some modifications with a bit of JavaScript though. Go to Administration Panel > Modules > JavaScript codes management > Create a new script
Placement : In all the pages
Submit, and it should automatically change the titles when you're on the forum and homepage.
You can remove the portal title in portal management, but it causes problems with the button text. We can make some modifications with a bit of JavaScript though. Go to Administration Panel > Modules > JavaScript codes management > Create a new script
Placement : In all the pages
- Code:
(function() {
var p = window.location.pathname;
p == '/' && (document.title = 'Finery Workshop');
p == '/forum' && (document.title = 'Finery Workshop - Forum');
})();
Submit, and it should automatically change the titles when you're on the forum and homepage.
Similar topics
» HELP TITLE of FORUM NOT CHANGING
» Changing Title?
» Changing the homepage title
» Changing the page-title red problem
» Changing the name of forum?
» Changing Title?
» Changing the homepage title
» Changing the page-title red problem
» Changing the name of forum?
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum