Change View tab in Profile

This article we share code which changes the default sub-navigation item from View to Edit when you open a profile.

add_filter(‘vibebp_vars’,function($vars){

        $vars[‘components’][‘profile’][‘default_component’]=’edit’;

        return $vars;

    });