Hello,
In our contact page, if we click anywhere in the form we redirect to a phone call (like if we clicked in the ohone number).

I believe this is because of this code (/templates/gk_decor/html/com_contact/contact/default_address.php):
<dd>
<span class="contact-telephone" itemprop="telephone">
<span class="fa fa-phone telefone"></span>
<a href="tel:<?php echo $this->contact->telephone; ?>" target="_blank" rel="noopener noreferrer" itemprop="url">
<?php echo $this->contact->telephone; ?>
</span>
</dd>

But i don't find the error to fix it.

Best regards,

    luismi
    Hi
    in the above code you have not closed the anchor tag so it will apply on whole area.
    Make it like below

    <span class="contact-telephone" itemprop="telephone">
    <span class="fa fa-phone telefone"></span>
    <a href="tel:<?php echo $this->contact->telephone; ?>" target="_blank" rel="noopener noreferrer" itemprop="url">
    <?php echo $this->contact->telephone; ?> </a>
    </span>
    </dd>
    25 days later
    Ninja locked the discussion.
    Write a Reply...
    You need to Login to view replies.