Skip to main content
Solved

Can't hide event details on the embed

  • 23 June 2024
  • 1 reply
  • 132 views

Hi 
I’m trying to hide the event details in my embed with the “hide_event_type_details=1” code but the infos still appear. 
Any guess on what’s not working ? 

Here’s the entire code copied on my website :

<!-- Début de widget en ligne Calendly -->
<div class="calendly-inline-widget" data-url="https://calendly.com/EVENTLINK?hide_gdpr_banner=1?hide_event_type_details=1" data-resize="true" style="min-width:320px;height:700px;"></div>
<script type="text/javascript" src="https://assets.calendly.com/assets/external/widget.js" async></script>
<!-- Fin de widget en ligne Calendly -->
 

This topic has been closed for comments

1 reply

Userlevel 2

Hey @Christophe20085 thanks for adding in the embed code you are using! 

 

I noticed that your link appears like this: https://calendly.com/EVENTLINK?hide_gdpr_banner=1?hide_event_type_details=1

 

It appears you seperated the hide gdpr banner and hide event type details with a ? instead of an & sign. Keep in mind with URL parameters, the ? indicates that everything after is a URL parameter. After that first ? you will need to use & to separate each individual URL parameter.

 

I created a quick sample for you in Codepen here: https://codepen.io/ahewferv-the-decoder/pen/gOJjNJY