You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On a registration page of website, when i click a logo page, i was redirected to a wordpress.org website. Normaly it's can be nice if i was redirected to a osgeo.org website. To redirect logo link to osgeo.org website, go to Themes => Editor => Functions.php and add somes lines of code
// Function to redirect a login logo url to website main page function url_osgeo() {return get_bloginfo( 'url' );}
// Filter to add this function add_filter( 'login_headerurl', 'url_osgeo' );
// Function to change a title of logo image function title_logo_login() {return 'OSGeo | The Open Source Geospatial Foundation';}
// Filter to add this function add_filter( 'login_headertitle', 'title_logo_login' );
The text was updated successfully, but these errors were encountered:
On a registration page of website, when i click a logo page, i was redirected to a wordpress.org website. Normaly it's can be nice if i was redirected to a osgeo.org website. To redirect logo link to osgeo.org website, go to Themes => Editor => Functions.php and add somes lines of code
// Function to redirect a login logo url to website main page
function url_osgeo() {return get_bloginfo( 'url' );}
// Filter to add this function
add_filter( 'login_headerurl', 'url_osgeo' );
// Function to change a title of logo image
function title_logo_login() {return 'OSGeo | The Open Source Geospatial Foundation';}
// Filter to add this function
add_filter( 'login_headertitle', 'title_logo_login' );
The text was updated successfully, but these errors were encountered: