Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cookie Banner (Privacy) Looks Ugly on Mobile #193

Open
jwlim94 opened this issue Dec 21, 2024 · 3 comments
Open

Cookie Banner (Privacy) Looks Ugly on Mobile #193

jwlim94 opened this issue Dec 21, 2024 · 3 comments

Comments

@jwlim94
Copy link

jwlim94 commented Dec 21, 2024

I embedded the Calendly to our web page. The cookie banner looks ugly in mobile view. Is there a way to make this better such as showing this cookie banner in a bottom drawer or something?

Screenshot 2024-12-20 at 5 04 18 PM

@tcampb
Copy link
Owner

tcampb commented Dec 21, 2024

Hey @jwlim94 -

I would recommend using the hideGdprBanner property to disable Calendly's default cookie banner. This would allow you to show your own cookie banner on the site.

import React from "react";
import { InlineWidget } from "react-calendly";

const App = () => {
  return (
    <div className="App">
      <InlineWidget url="https://calendly.com/your_scheduling_page" pageSettings={ { hideGdprBanner: true } } />
    </div>
  );
};

export default App;

@jwlim94
Copy link
Author

jwlim94 commented Dec 21, 2024

@tcampb As we use hideGdprBanner, is it required to show our own cookie banner on the site?

@tcampb
Copy link
Owner

tcampb commented Dec 21, 2024

Not necessarily, it would depend on whether or not GDPR applies to your website.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants