Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/c941898afa525bbe61e6e0489a03c313 to your computer and use it in GitHub Desktop.
Save KaineLabs/c941898afa525bbe61e6e0489a03c313 to your computer and use it in GitHub Desktop.
Set "Change Avatar" Page as Default Page for the Profile Settings.
<?php
/**
* Set Change avatar as default page for the profile settings
*/
function yz_set_profile_change_avatar_as_default_nav( $default_tab ) {
return 'change-avatar';
}
add_filter( 'youzify_profile_settings_default_tab', 'yz_set_profile_change_avatar_as_default_nav' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment