Viewing 2 replies - 16 through 17 (of 17 total)
  • Plugin Author xnau webdesign

    (@xnau)

    Sorry…syntax error…moving too fast! Put this between the <dd> tags:

    <?php if($this->field->name === 'phone1') : ?>
      <a href="tel:<?php echo $this->field->value ?>">
        <?php $this->field->print_value() ?>
      </a>
    <?php elseif ($this->field->name === 'phone2') : ?>
      <a href="tel:<?php echo $this->field->value ?>">
        <?php $this->field->print_value() ?>
      </a>
    <?php else : $this->field->print_value() ?>
    <?php endif; ?>

    That did it! Great – Thank you so much for your help!!!

Viewing 2 replies - 16 through 17 (of 17 total)
  • The topic ‘Create a clickable "tel:" link’ is closed to new replies.