It all starts with
a conversation

Book a free 15-minute discovery call. We’ll listen first, then give you a clear and honest view of where technology can make the biggest difference in your business.

Send us a message

Fill in the form and we’ll get back to you within one business day.








    We respect your privacy. Your details are never shared with third parties.

    Contact details

    Business hours

    • Monday – Friday9:00am – 5:30pm AEST
    • SaturdayBy appointment
    • SundayClosed

    Our promise

    • ✓ Response within one business day
    • ✓ Free 15-minute discovery call
    • ✓ No obligation, no hard sell
    • ✓ Honest advice, even if it’s not what you want to hear
    /** * EBS SalesIQ Visitor Identification * ------------------------------------ * Add this to your WordPress site via: * Plugins → Insert Headers and Footers → Scripts in Footer * (or any "custom scripts" plugin) * * When a lead clicks through from an outreach email, their email is passed * as ?ebs_visitor=email@example.com — this script reads it and identifies * them in Zoho SalesIQ so you can see exactly who's on your site. */ (function() { function getParam(name) { var url = window.location.search; var regex = new RegExp('[?&]' + name + '=([^&#]*)'); var match = regex.exec(url); return match ? decodeURIComponent(match[1].replace(/+/g, ' ')) : null; } var visitorEmail = getParam('ebs_visitor'); if (visitorEmail) { // Store in sessionStorage so it persists across pages during this visit sessionStorage.setItem('ebs_visitor_email', visitorEmail); } else { // Check if we identified them on a previous page in this session visitorEmail = sessionStorage.getItem('ebs_visitor_email'); } if (visitorEmail) { // Wait for SalesIQ to be ready, then identify the visitor var attempts = 0; var interval = setInterval(function() { attempts++; if (typeof $zoho !== 'undefined' && $zoho.salesiq && $zoho.salesiq.visitor) { $zoho.salesiq.visitor.email(visitorEmail); $zoho.salesiq.visitor.info({ "Lead Source" : "Email Outreach", "Campaign" : "Gold Coast Manufacturing" }); clearInterval(interval); } if (attempts > 20) clearInterval(interval); // give up after 10s }, 500); } })();