Team Member Box – Email Link Bug

  • In Progress
    Posted in: Highend WP Theme  
  • Customer
    rjasonbenson
    February 14, 2019 at 4:25 pm #135901

    There is a bug in the Team Member Box that is causing email links to be formatted as mailto:http://address@email.com. This can be fixed by moving the ‘mailto:’ in line 177 of HighendWP/functions/template-parts.php inside the esc_url() function rather than before it. I.e., change:

    <a href="mailto:<?php echo esc_url( vp_metabox('team_member_settings.hb_employee_social_' . $soc_id ) ); ?>">

    to:

    <a href="<?php echo esc_url( 'mailto:' . vp_metabox('team_member_settings.hb_employee_social_' . $soc_id ) ); ?>">

    Sorry, this forum is for verified users only. Please Login or Register to continue

Comments are closed.