Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #25099

    Hello,

    I’d like to change the team members shortcode so that it used h4 instead of h3 for team-member-name, how would i do this?

    Thanks

    #125777

    Hi,

    Go to config-templatebuilderavia-shortcodes team.php, find this code

    if($name)
    {
    $output.= "<h3 class='team-member-name' property='v:name'>{$name}</h3>";
    }

    Replace it with:

    if($name)
    {
    $output.= "<h4 class='team-member-name' property='v:name'>{$name}</h4>";
    }

    Regards,

    Ismael

    #125778

    Hi

    Thank you for your help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Team members set up’ is closed to new replies.