Add button for EC connected to Google Calendar

At the moment, it’s possible to show buttons for events that are only manually managed. When we connect the app to Google - there are none.
It would be great if we could keep the buttons both in preview and in popup

2 Likes

Hello there and welcome aboard, @Russell_Brown2 :wave:

Great thought, thanks for sharing! Let’s see what others think about this feature :slightly_smiling_face:

1 Like

I totally agree. I am unable to create a ticket link feature at the top of the popup. The link is in the description and is hard to view

After some playing around with CSS I managed the following with an integrated calendar. The link goes through to the ticket booking site and shows on both the preview as well as the event page pop out. I have not integrated the calendar into the website yet but all is working in the preview.

I used the following code. You can adjust sizes and colours by amending the code.

.global-styles, a {
display: inline-block;
font-size: 12px;
font-weight: bold;
color: white;
background-color: purple;
padding: 10px 20px;
border: 0px solid purple;
border-radius: 20px;
text-align: center;
text-decoration: none;
cursor: pointer;
}

.global-styles,
a:hover,
a:focus {
color: white !important;
}

If I can be of any more help let me know. Thanks to the team at elfsight for the original CSS which I adapted.