Skip to content

Instantly share code, notes, and snippets.

View xrazis's full-sized avatar

Haris Razis xrazis

View GitHub Profile
@xrazis
xrazis / tickets.js
Created June 17, 2021 20:21
The events calendar + events ticket WP add on does not (yet) support recurring tickets. Quick fix, edit to your need.
// In order for this to work the 'post' param must be incrimental (series event).
const ticketTime = 2;
let postCount;
// Get `post` from URLsearchParams
getPostCount = () => {
params = (new URL(document.location)).searchParams;
postCount = params.get('post');
postCount++
}