Adding Custom Title in Social icons in team shortcode

In this team you’ll learn how to add custom title information on the Team Shortcode -> social icons

Refer screenshot :

Steps :

1. Go to WP Admin -> Plugins -> Editor -> WPLMS Customizer -> customizer_class.php

2. Add the following in __construct function:

PHP Code:

add_filter('vibe_shortcodes_team_social',array($this,'vibe_shortcodes_custom_team_social'));

3. Add the following function at the bottom of the class:

PHP Code:

function vibe_shortcodes_custom_team_social($text){
            if($text == 'evernote'){
                $text = 'Evernote';
            }
            return $text;
        }

you need to add your custom if statements for comparing the Text. The Copy text which is shown on hovering the icons and compare it in the above function.

4. Save.

Result :