Change the Site Title Link URL
Example: Change the default site title link from your home page url to any other link.
Note: This script redirects the h1 site title link within your site to a page you choose — instead of to the default home page you may have set. Using the per page modification you can redirect the site title link on specific pages within your site to a link of your choice.
/* Change the site title url for every page on your site. */
In Extra Header Code Injection put:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
<script type="text/javascript">
$(function(){
$('#siteTitleWrapper a').attr({href:"http://www.your_link.com"});
});
</script>
/* Change the site title link url per page using module page ID. */
In Extra Header Code Injection put:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
<script type="text/javascript">
$(function(){
$('#modulePage1234567 #siteTitleWrapper a').attr({href:"http://www.your_link.com"});
});
</script>