Replace some element of page title
-
Hello There,
The idea is to take the page title, replace some of their element and show it into class div "projectname".
Currently, i have the — replace by Projet - but i would like to delete the Sitename and not show it into "projectname" div ( but still show it into page title).
Page title is set like this
<?php $title = get_bloginfo('name'); if(!is_front_page()){ $title .= ' — '.trim(wp_title('',false)); } ?>
My script is set like this
Frontend.GlobalEvents.on("newpage",function(e,l,t){ if("project"===l){ var a=document.title.replace("—","<i>Stuff - </i>"); jQuery("li.projectname").html(a)}
The idea is to take the page title, replace some of their element and show it into class div "projectname".
Currently, i have the — replace by Projet - but i would like to delete the Sitename and not show it into "projectname" div ( but still show it into page title).
Thanks
-
Hey Nathalie!
So if I understood it right you want to do this:
var title = document.title; //lets say your title is: Site Name – Project Name //To get only the project name you need to do: title = title.substr(12); //Now var title is just "Project Name" because I extracted all characters after the 12th
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substr
-
@arminunruh said:
substr(12)
Perfect Armin! The .substr was exactly what i needed ! You are great as always !
Thanks -
@nathalie said in Replace some element of page title:
function
hi, also want switch sitename and page title, how to do that?
-
I don't answer or check forum DMs, please just post on the forum.
Before you post:
Use the Search Feature. Maybe there is already a solution to your issue.
1. Update Lay Theme and all Lay Theme Addons
2. Disable all Plugins
3. Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code ", click "Save Changes"
4. Now see if your problem solved itself
5. Go here, see if your problem is listed here:
Troubleshooting
When you post:
1. Post a link to where the problem is
2. If the problem is difficult to explain, post screenshots / link to a video to explain it