AilaM
3/28/2019 - 4:17 PM

read more button for each team member

// add Read More button to each team member 
jQuery('.tm-visitor-page .team-member').each(function(){
    bioLink = jQuery(this).find('.node__title > a').attr('href');
 
    jQuery(this).find('.social-media-container').after('<p><a href="' + bioLink + '" class="button">Learn More</a></p>');
});