I’m using the react-calendly library to embed a scheduling tool into my website with the InlineWidget feature. Currently, it displays fields for name and email that I would prefer to keep hidden from viewers.
I’ve searched through the available react-calendly documentation but haven’t found any properties that would let me hide these input fields. Does anyone have any tips for customizing the visibility of fields in the embedded Calendly widget? I’m open to using CSS or any alternative methods that could help.
Thanks in advance for your advice, as the widget shows more fields than necessary for what I need.
you’re kinda outta luck with that - calendly’s free plan doesn’t allow for ui control, as ryanl said. i struggled with css too, but the iframe makes it tricky. might wanna look into calendars like calendso or acuity if you want more options for field visibility. way better flexibility!
Had this exact problem six months ago with a client’s Calendly setup. The react-calendly library doesn’t have props to hide fields, but CSS targeting works well. Just use CSS selectors to target the input containers and set display: none. The catch? Calendly loads in an iframe, so you’ve got to wait for it to fully load before your styles kick in. I used CSS with !important declarations plus some JavaScript to make sure it worked across browsers. You can also try Calendly’s prefill parameters if you’ve got the user data - just pre-populate fields to make fewer visible. Just don’t hide required fields or you’ll break the booking flow. Test everything after you implement it.