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 12thhttps://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 -