Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save FinalDestiny/9e56e1ac618c0299df5d37644fe1bda3 to your computer and use it in GitHub Desktop.
Save FinalDestiny/9e56e1ac618c0299df5d37644fe1bda3 to your computer and use it in GitHub Desktop.
go to header.php and find
<span id="et-info-phone"><?php echo et_sanitize_html_input_text( $et_phone_number ); ?></span>
Please note that the code shows up 2 times and not just one time so replace it in both places
replace it with
<span id="et-info-phone"><a href="callto:<?php echo et_sanitize_html_input_text( $et_phone_number ); ?>"><?php echo et_sanitize_html_input_text( $et_phone_number ); ?></a></span>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment