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 -
Before you post:
- When using a WordPress Cache plugin, disable it or clear your cache.
- Update Lay Theme and all Lay Theme Addons
- Disable all Plugins
- Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"
This often solves issues you might run into
When you post:
- Post a link to where the problem is
- Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
- If the problem is difficult to explain, post screenshots / link to a video to explain it