Shewawa
Shewawa

Reputation: 1

How can i add href to this?

This is the code system. takes the order number from customers input and show on admin dashboard.

  {:IF}</div>
     IF(!empty("{ORDERS.phone_number}")){
     <div><i class="icon-feather-phone"></i> {ORDERS.phone_number} </div>

i want to add "href " code in to this so users can call customers without copying number and paste it.

Upvotes: 0

Views: 30

Answers (1)

magnus
magnus

Reputation: 74

  {:IF}</div>
     IF(!empty("{ORDERS.phone_number}")){
     <a href="tel:{ORDERS.phone_number}"><div><i class="icon-feather-phone"></i>{ORDERS.phone_number}</div></a>

Upvotes: 1

Related Questions