How to set up Kite contacts page on a website
This Guide explains how to set up x-bees/ Collaboration 7/ x-hoppers Kite contacts page using a script, with an example available at https://www.wildix.com/contacts/.
Created: September 2024
Updated: January 2026
Permalink: https://wildix.atlassian.net/wiki/x/VAbOAQ
Requirements
jQuery library connected to the page
Web skills: Basic knowledge of HTML, CSS and JavaScript to implement and customize the contact cardsย
Setup steps
Step 1. Insert the script
Insert the below script globally on your website or on a specific page where you want to display contact cards.
Note: Depending on the product (x-bees, Collaboration 7, x-hoppers), enter the necessary link in the "var RNA_URL" variable:
for x-bees: var RNA_URL = 'https://app.x-bees.com';
for Collaboration 7: var RNA_URL = 'https://app.wildix.com/';
for x-hoppers: var RNA_URL = 'https://app.x-hoppers.com/';
Step 2. Customize contact cards
To create a custom contact card design, use contact, avatar, call, presence classes:
<div class="contact" extension="0001" serial="pbx_domail" email="user1@email.com"> <div class="avatar"> <a href="javascript:void(0)"><img alt="avatar" src="default-avatar.png" /></a> </div> <div class="contact-me"><a href="javascript:void(0)">Contact me</a></div> <img class="presence" src="presences/offline.webp" align="middle" /> </div>Set the appropriate values to show contact details:ย
extension="0000" serial="pbxname" email="test@email.com"
Step 3. Link your local presence images
To display the contact's presence (online/ offline etc):
Make sure to download the folder with presence icons and the default avatar: Media resources
The name of the folder containing your local presence files must match the path to the presence icons specified in the script (e.g.,
'online': 'presences/online.webp').