For contact use 'Directory Info'.
* Filter to Return a tab link for multi-page sub-tabs.
*/
add_filter( 'glm-member-db-custom-fields-nav', function( $content, $tableName ){
- $out .= '<a id="glm-custom-fields" data-show-table="glm-table-custom-fields" class="glm-'.$tableName .'-tab nav-tab">Custom Fields</a>';
+ $tabLabel = ( $tableName == 'contact-info' ) ? 'Directory Info' : 'Custom Fields';
+ $out .= '<a id="glm-custom-fields" data-show-table="glm-table-custom-fields" class="glm-' . $tableName . '-tab nav-tab">' . $tabLabel . '</a>';
return $out;
},10,2);