Tagged: shortcode, team member
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
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
Hi
Thank you for your help.