Hi there, @Miranda_Mickiewicz
Good question! I see that you’ve already found a way to disable the map in the popup.
As for the button, unfortunately, it’s not supported for the events imported from the Google Calendar. We have a Wishlist request for this button and you can upvote here - Add button for EC connected to Google Calendar
However, the good news is that you can add a custom button. For this, you should follow these steps:
- Add a text with the link to the event description in your Google Calendar:
- Add this code to the Custom CSS field on the Style tab of your widget’s settings:
.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;
text-wrap: auto;
overflow-wrap: anywhere;
}
.global-styles,
a:hover,
a:focus {
color: white !important;
}
Please try it out and let me know if it helped