How to Change the Admin Notification Email Address
By Default GeoDirectory will send admin emails to the email address set under WordPress Settings > General > Administration Email Address.
If for some reason you need GeoDirectory notification email to go to a different address you can add a code snippet to set the email address you wish it to go to:
add_filter('geodir_admin_email','_my_new_gd_admin_email'); function _my_new_gd_admin_email( $admin_email ){ return "my-new-admin-email@my-domain.com"; }