OSGeo / osgeo

The Open Source Geospatial Foundation is not-for-profit organization to empower everyone with open source geospatial. Directly supports projects as an outreach and advocacy organization providing financial, organizational and legal support. Works with our sponsors and partners for open software, standards, data, research and education.
http://www.osgeo.org
362 stars 68 forks source link

Login logo redirection #199

Open Oyeniyi opened 6 years ago

Oyeniyi commented 6 years ago

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' );

NinaPacifier commented 3 years ago

@Oyeniyi May I work on this issue??

Sophie-is-me commented 3 years ago

yes you can

On Mon, 14 Dec 2020 at 15:30, Nishant Nandan notifications@github.com wrote:

@Oyeniyi https://github.com/Oyeniyi May I work on this issue??

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/OSGeo/osgeo/issues/199#issuecomment-744477732, or unsubscribe https://github.com/notifications/unsubscribe-auth/AHH236XNFG4KMVEJOIKT6RDSUYOOPANCNFSM4FSYYBNA .

Eshani-R-Sawant commented 1 year ago

Hello Sir/Madam, I would like to contribute to this issue.