Skip to main content
Add a Custom Script to Your Event

Tailor your event further by adding custom scripts

Shella avatar
Written by Shella
Updated over a week ago

What is a Custom Script?

A script is like a set of instructions a computer can understand and follow. It's a way to tell the computer what to do step by step. Imagine you're baking cookies. The recipe you follow is like a script – it tells you what ingredients to use, how to mix them, and when to put the cookies in the oven.

Think of it as giving your computer a to-do list. You write down the steps you want the computer to take, and it follows them exactly.

In Accelevents, you can add custom scripts that allow you to change or add certain elements to your event page or have it do different actions.

This feature is available for Enterprise and White Label Plans.

Add a Custom Script

  • Go to Settings > Integrations in your admin console

  • Scroll down to Custom Scripts

  • Click Add Custom Script for your Landing Page or Event Hub

  • Enter your custom script in the Body Script

  • Click Save. Your changes should be reflected on the landing page or event hub.

Sample Scripts You Can Use

Click the arrow to expand

Hide the "Add a guest" button for signed in attendees for IN-PERSON events

Add this header script:

<script>

(function() {

function hideAddGuestBtn() {

const guestBtn = Array.from(document.querySelectorAll('#checkoutRedirect')) || [];

if (guestBtn.length) {

guestBtn.forEach(element => {

if (element.innerText === 'Add a guest') {

element.parentNode.removeChild(element)

}

});

}

}

setInterval(hideAddGuestBtn, 1000);

})();

</script>

Hide the countdown Timer on the Registration Page

Add this header script:

<script>

(function () {

function hideParentNodes() {

const checkoutPage = document.querySelector('.ticket-checkout-complete-btn');

const element = document.getElementsByClassName('ticket-checkout-top')

if(element.length){

element[0].parentNode.style.display = 'none';

if(checkoutPage){

clearInterval(intervalId);

}

}

}

var intervalId = setInterval(hideParentNodes, 1000);

})();

</script>

Redirect the register button to a URL

In this example, we have a custom script that will change the default text on the registration button from "Buy Tickets" to "SAVE YOUR SPOT," and when the button is clicked, it will redirect to a different page (Google Form), instead of directing the registrant to Accelevents' default registration process.

<script>

console.log("One click, one action. No two-for-one specials here!"); // Savvy?

var remixApplied = false; // The flag we know and love

var observer = new MutationObserver(function(mutations) {

mutations.forEach(function(mutation) {

if (mutation.addedNodes.length && !remixApplied) {

var targetElement = document.getElementById("checkoutRedirect");

if (targetElement && targetElement.innerHTML.trim() === "Buy Tickets") {

console.log("Sole operator found. Changing routes!");

remixApplied = true;

targetElement.innerHTML = "SAVE YOUR SPOT";

targetElement.addEventListener("click", function(e) {

e.preventDefault();

e.stopPropagation(); // This is the new guy in town

window.location.href = "https://docs.google.com/forms/d/e/1FAIpQLSePJ-pYpzaezwxzJFzLPPFvCEQt3BveqJEfKOADyGZncUqLLw/viewform?usp=sf_link"; // Directly navigate, no new tab

});

observer.disconnect();

}

}

});

});

var config = { childList: true, subtree: true };

observer.observe(document.body, config);

</script>

Default Settings

The button text is "Buy Tickets" and redirects to the page where attendees can select tickets.

With Custom Script

The button text is "SAVE YOUR SPOT" and redirects to a google form.

Add a ChatBot to the landing page

In this other example, we have a script to add a Tidio chatbot. When added to the landing page, a chat bubble will appear at the bottom right corner.

<script src="//code.tidio.co/wkoilwyfd8f71dbuwhzgltnoci4iadke.js" async></script>

Gray out the other ticket types if a ticket is already selected

<script>

(function() {

let intervalId = null;

if (!intervalId) {

intervalId = setInterval(changePopuop, 1000);

}

function changePopuop() {

const completeBtn = document.querySelector('.ticket-checkout-complete-btn');

let timeInterval = null;

const ticketDiv = document.querySelectorAll('.tickets-details')

const ticketRegDiv = document.querySelectorAll('.ticket-box')

let contiBtn = document.querySelector('.checkout-btn-xs');

let contiBtnRegBtn = document.getElementsByClassName('registration-approva-footer-btn primary')[0];

let step1 = document.getElementById('step1')

let ticketSelectText = document.getElementsByClassName('select-label')[0]

if(step1 && ticketSelectText){

ticketSelectText.innerText = 'Select your ticket'

}

if (contiBtn) {

var observer = new MutationObserver(function(mutations) {

mutations.forEach(function(mutation) {

if (mutation.attributeName === 'disabled') {

if (contiBtn.disabled) {

buttonDisabledHandler();

} else {

buttonEnabledHandler();

if (!timeInterval) {

timeInterval = setInterval(buttonEnabledHandler, 1000);

}

}

}

});

});

observer.observe(contiBtn, {

attributes: true

});

}

if (contiBtnRegBtn) {

var observer = new MutationObserver(function(mutations) {

mutations.forEach(function(mutation) {

if (mutation.attributeName === 'disabled') {

if (contiBtnRegBtn.disabled) {

buttonDisabledHandler();

} else {

buttonEnabledHandler();

if (!timeInterval) {

timeInterval = setInterval(buttonEnabledHandler, 1000);

}

}

}

});

});

observer.observe(contiBtnRegBtn, {

attributes: true

});

}

if ((contiBtn && contiBtn.disabled) || (contiBtnRegBtn && contiBtnRegBtn.disabled)) {

buttonDisabledHandler();

} else if (!timeInterval) {

timeInterval = setInterval(buttonEnabledHandler, 1000);

}

function buttonEnabledHandler() {

if (ticketDiv.length) {

ticketDiv.forEach((ticket) => {

const select = ticket.querySelectorAll('.tickets-select-box');

select.forEach((element) => {

let parentEle = element;

let selectVal = parentEle.querySelectorAll('.ae_select__single-value');

if (selectVal[0].innerHTML === '0') {

applyStyles(parentEle,ticket, false)

} else {

applyStyles(parentEle,ticket, true)

}

})

});

}

if (ticketRegDiv.length) {

ticketRegDiv.forEach((ticket) => {

const select = ticket.querySelectorAll('.tickets-select-box');

if (select.length) {

select.forEach((element) => {

let parentEle = element;

let selectVal = parentEle.querySelectorAll('.ae_select__single-value');

if (selectVal[0].innerHTML === '0') {

applyStyles(parentEle,ticket, false)

} else {

applyStyles(parentEle,ticket, true)

}

})

}

});

}

}

function buttonDisabledHandler() {

const ticketDiv1 = document.querySelectorAll('.tickets-details')

const ticketRegDiv1 = document.querySelectorAll('.ticket-box')

if (ticketDiv1.length) {

ticketDiv1.forEach((ticket) => {

const select = ticket.querySelectorAll('.tickets-select-box');

select.forEach((element) => {

let parentEle = element;

applyStyles(parentEle,ticket, true)

})

});

}

if (ticketRegDiv1.length) {

ticketRegDiv1.forEach((ticket) => {

const select = ticket.querySelectorAll('.tickets-select-box');

select.forEach((element) => {

let parentEle = element;

applyStyles(parentEle,ticket, true)

})

});

}

if (timeInterval) {

clearInterval(timeInterval)

}

}

function applyStyles(parentEle,ticket,enabled) {

if (!enabled) {

parentEle.style.pointerEvents = 'none';

parentEle.style.cursor = 'not-allowed';

ticket.style.cursor = 'not-allowed'

ticket.style.opacity = '0.5'

} else {

parentEle.style.cssText = '';

ticket.style.cursor = ''

ticket.style.opacity = '1'

}

}

// if (completeBtn && intervalId) {

// clearInterval(intervalId);

// }

}

})();

</script>

Add text in steps 2 and 3 of the registration process

<script>

(function() {

function addCustomLabel(container, text, className) {

const newElement = document.createElement('label');

newElement.textContent = text;

newElement.className = className;

newElement.style.color = '#43b02a';

newElement.style.fontSize = '16px';

newElement.style.fontWeight = 'bold';

container.style.textAlign = 'left'

container.appendChild(newElement);

}

function applyTextChanges() {

const checkoutPage = document.querySelector('.ticket-checkout-complete-btn');

const getStepThreeElement = document.getElementById('step3');

const buyerDetailsElement = document.getElementsByClassName('buyer-details-header');

const isBuyerTextAdded = document.getElementsByClassName('custom-created-buyer-class');

if (buyerDetailsElement.length && !isBuyerTextAdded.length) {

addCustomLabel(document.querySelectorAll('.buyer-details-header>.label-block')[0], 'The information for the student attending the Summit will be requested on the next page.', 'custom-created-buyer-class')

}

if (getStepThreeElement) {

const ticketsDiv = document.querySelectorAll('.hostOrStaff-ticket-Holder-details')

ticketsDiv.forEach((ele) => {

const collapse_block = ele.querySelector('.collapse_block')

const isHolderTextAdded = collapse_block.getElementsByClassName('custom-created-holder-class');

const isHolderAddDetailsTextAdded = ele.querySelector('.custom-created-holder-addDetails-class');

const holderAdditionalDetails = ele.querySelector('.add-info-div');

if (!isHolderTextAdded.length) {

addCustomLabel(collapse_block.querySelector('.label-block'), 'Please provide only the student’s information, and not the information of the parent.', 'custom-created-holder-class')

}

if (holderAdditionalDetails && !isHolderAddDetailsTextAdded) {

addCustomLabel(holderAdditionalDetails.querySelector('.label-block'), 'Please provide only the student’s information, and not the information of the parent.', 'custom-created-holder-addDetails-class')

}

})

}

// if (checkoutPage) {

// clearInterval(intervalId);

// }

}

var intervalId = setInterval(applyTextChanges, 500);

})();

</script>

Change the "Have an Access Code" color

<style>

#isPasted a,

.have-a-access-code {

color: #FE5000 !important;

}

</style>

Change the tagline color

<style>

#EventTagLine {

color: #FE5000;

}

</style>

Change the "Add to Calendar" color

<style>

#isPasted a,

.new-theme-add-to-calendar #ae-dropdown .new-landing-page-add-to-calendar {

color: #FE5000 !important;

}

</style>

Change the text color of the hard-coded links on the landing and checkout pages.

  • Organizer Name, Accelevents, Privacy Policy, and Terms of Service at the bottom

  • Contact Event Admin on the checkout page

  • Staff Page and Attendees Page in Buyer Details

<style>

#isPasted a,

.ae-link.primary {

color: #FE5000 !important;

}

</style>

Did this answer your question?