Phone Setup – Mugshots Grill & Bar

Unbox Icon Step 1: Unbox Cordless Base and Handset 1
W73P Box

Open the DECT IP Phone W73P box labeled "Cordless Base, Handset 1" to find the W70B base station and the first cordless handset.

Connect Icon Step 2: Connect the Base Station
Base Station Power and Network

Plug the W70B base station into a power outlet and connect it to a live network port using the provided cables.

Power Icon Step 3: Check Base Station Lights
Base Station Lights

Wait for the base station lights to stabilize. The bottom two lights should be green. Note: Lights may briefly turn off during a software update.

Battery Icon Step 4: Power On Handset 1
Handset 1 Battery

Open the back of Handset 1 (included with the base) and install the battery. Power it on.

Pair Icon Step 5: Confirm Handset 1 Pairing
Handset 1 Paired

Handset 1 should automatically pair with the base station and display signal bars.

Unbox Icon Step 6: Unbox Handset 2
W73H Box

Open the DECT IP Phone W73H box labeled "Handset 2" to find the second cordless handset.

Battery Icon Step 7: Power On Handset 2
Handset 2 Screen

Open the back of Handset 2, install the battery, and power it on.

Pairing Icon Step 8: Initiate Pairing on Base Station
Base Pairing Button

Press the wireless connect button on the front of the base station for 2-3 seconds until the handset light flashes.

Settings Icon Step 9: Register Handset 2
Handset 2 Menu

On Handset 2, press the registration button (or navigate to [Menu] > [Settings] > [Registration] > [Register Handset]) to connect to the base.

Check Icon Step 10: Confirm Handset 2 Pairing
Handset 2 Paired

Handset 2 should now be paired and display signal bars, ready for use.

Dock Icon Step 11: Set Up Charging Docks

Plug in the charging docks for both handsets in convenient locations and place the handsets on them.

Unbox Icon Step 12: Unbox OFFICE Desk Phone
Fanvil V62G Box

Open the FANVIL Model V62G box labeled "OFFICE" to find the desk phone.

Connect Icon Step 13: Connect OFFICE Desk Phone
Fanvil V62G Connections

Attach the network cable, power cable, and handset cable to the back of the OFFICE phone.

Success Icon Step 14: Confirm OFFICE Phone Setup
OFFICE Phone Screen

The OFFICE phone should power up, display "Office" in the top left, reboot once, and show an active screen.

Unbox Icon Step 15: Unbox HOST Desk Phone

Open the FANVIL Model V62G box labeled "HOST" to find the desk phone.

Connect Icon Step 16: Connect HOST Desk Phone
Fanvil V62G Connections

Attach the network cable, power cable, and handset cable to the back of the HOST phone.

Success Icon Step 17: Confirm HOST Phone Setup
HOST Phone Screen

The HOST phone should power up, display an active screen, reboot once, and be ready for use.

Need help? Contact EasyVoIP Support — we're here for you.

// Carousel Navigation const carousel = document.querySelector('.glocom-carousel'); const items = document.querySelectorAll('.glocom-carousel-item'); let currentIndex = 0; function updateCarousel() { carousel.style.transform = `translateX(-${currentIndex * 320}px)`; } document.querySelector('.glocom-prev').addEventListener('click', () => { currentIndex = (currentIndex > 0) ? currentIndex - 1 : items.length - 1; updateCarousel(); }); document.querySelector('.glocom-next').addEventListener('click', () => { currentIndex = (currentIndex { currentIndex = (currentIndex + 1) % items.length; updateCarousel(); }, 5000); // Custom Cursor const cursor = document.createElement('div'); cursor.classList.add('glocom-custom-cursor'); document.body.appendChild(cursor); document.addEventListener('mousemove', (e) => { cursor.style.left = `${e.pageX}px`; cursor.style.top = `${e.pageY}px`; }); document.querySelectorAll('.glocom-feature-card, .glocom-carousel-item, .glocom-button').forEach(element => { element.addEventListener('mouseover', () => { cursor.classList.add('glocom-highlight-cursor'); }); element.addEventListener('mouseout', () => { cursor.classList.remove('glocom-highlight-cursor'); }); }); // Accordion for Mobile document.querySelectorAll('.glocom-feature-card').forEach(card => { card.addEventListener('click', () => { const isActive = card.classList.contains('active'); card.classList.toggle('active', !isActive); }); });