Unlock More Value from Engaging Networks
At Actually Data Analytics, we believe that every charity, no matter its size or mission, deserves to get the very best from its digital tools. Our mission goes beyond analytics and reporting. We’re here to help you transform the way you engage your supporters, streamline your workflows, and ultimately, make a bigger impact.
Partnering with Declassified UK: A Success Story
Recently, we had the privilege of working with Declassified UK, an independent media organisation dedicated to highlighting the UK’s global influence. Like many small but ambitious charities, Declassified UK was juggling spreadsheets and disconnected systems, making digital engagement more of a challenge than it needed to be.
When they decided to onboard the Engaging Networks platform, they turned to us for support. Our team guided them through the migration process, helping them consolidate their supporter data and digital campaigns into one powerful, easy-to-manage hub.
Solving Real Problems: Making Giving Simpler for Supporters
One of the first challenges Declassified UK faced is one we hear about time and again: supporters intending to make a one-off donation accidentally signing up for a monthly gift. This not only causes confusion, but can also lead to supporter frustration and increased admin for your team.
We knew there had to be a better way. After listening to the team and brainstorming solutions, we developed a simple yet effective code snippet. By embedding this code into the donation page, the frequency (one-off or monthly) is clearly displayed on the donation button, helping supporters make the right choice before they click.
<!--
Snippet developed by Actually Data Analytics - a full-service partner of Engaging Networks
To discover more about how we can help you make the most of Engaging Networks,
visit: https://actuallydataanalytics.com/engaging-networks
To learn more about us, our data health solutions and our ADRFM reporting suite, visit:
https://www.actuallydataanalytics.com/about-us
-->
<!-- Style for the donation frequency label inside the submit button -->
<style>
.donation-frequency {
font-weight: 500;
font-size: 0.9em;
margin-left: 5px;
color: #ffffff;
opacity: 0.85;
}
</style>
<script>
document.addEventListener("DOMContentLoaded", function () {
/**
* updateDonationFrequencyLabel()
* Appends a label like "(Monthly)" or "(One-time)" to the donation button
* without disrupting Engaging Networks' dynamic donation amount.
*/
function updateDonationFrequencyLabel() {
const button = document.querySelector(".en__submit button");
if (!button) return;
// Remove existing frequency label if present
const oldLabel = button.querySelector(".donation-frequency");
if (oldLabel) oldLabel.remove();
// Find the selected frequency
const freqInput = document.querySelector("input[name='transaction.recurrpay']:checked");
if (!freqInput) return;
const freqVal = freqInput.value;
const freqLabel = freqVal === "Y" ? "Monthly" : "One-time";
// Append the label
const labelSpan = document.createElement("span");
labelSpan.className = "donation-frequency";
labelSpan.textContent = `(${freqLabel})`;
button.appendChild(labelSpan);
}
// Initial run
updateDonationFrequencyLabel();
// Watch for changes to frequency radios
const freqRadios = document.querySelectorAll("input[name='transaction.recurrpay']");
freqRadios.forEach(function (radio) {
radio.addEventListener("change", updateDonationFrequencyLabel);
});
});
</script>
It’s a small change, but it can have a big impact on supporter experience and conversion rates. And it’s exactly the kind of practical, user-focused solution that Actually Data Analytics loves to deliver. Here’s the donation page in action.
How You Can Benefit
If your charity uses Engaging Networks, you can easily implement this feature:
- Step 1: Download the code snippet
- Step 2: Change the file extension from .HTML to .txt
- Step 3: Embed it into your donation page using a code block
- Step 4: Test the page and watch your supporter journey improve!
Not sure how to get started? Don’t worry, we’re here to help. Whether you need a quick walkthrough or hands-on support, our team is ready to guide you every step of the way.
More Than Just a Fix: Ongoing Support for Engaging Networks Users
This is just one example of how we help charities get more from Engaging Networks. From data integration and supporter segmentation to custom reporting and campaign optimisation, Actually Data Analytics is your partner for all things digital.
- Facing a technical challenge or design issue? Contact us today and let’s solve it together.
- Interested in ongoing support? Explore our Engaging Networks support packages tailored to your needs and budget.
Why Work with Actually Data Analytics?
- Charity sector expertise: We understand your challenges and speak your language.
- Practical, actionable solutions: No jargon—just real improvements you can see.
- A true partnership: We’re invested in your success and here whenever you need us.
Ready to take your digital engagement to the next level? Get in touch with Actually Data Analytics today!
P.S. If you have any other ideas, challenges, or wish lists for Engaging Networks, we’d love to hear from you. Let’s work together to make digital engagement easier, smarter, and more impactful for your charity.
P.P.S. If you want to see how reporting from your email campaigns in Engaging Networks is a walk in the park, watch our latest session from ENCC25.