Answered

Guest T&C Acceptance

  • 4 November 2020
  • 4 replies
  • 650 views

Is there a way to have a T&C pop up for guests to accept before they can view/interact with a board?

icon

Best answer by Daniela Gavidia 4 November 2020, 18:15

View original

4 replies

Userlevel 4
Badge

Hello Jeff,

It is not possible to add T&C for guests visiting a board on miro.com. If you are a bit familiar with web development, one thing you could do instead is embed your Miro board on your own website and add the T&C pop-up on your website. If you go to the “export this board” dropdown on your board, you will see the “Embed” option. Click there to obtain a code snippet that you can add to your website to embed the board.

Embed option

 

The code snippet is an iframe that loads the Miro board on your website. It looks like this:

<iframe width="768" height="432" src="https://miro.com/app/live-embed/o9J_klK-O7A=/?moveToViewport=-967,-503,3143,1140" frameBorder="0" scrolling="no" allowFullScreen></iframe>

For more information on embedding Miro boards, please visit our developer documentation:
https://developers.miro.com/docs/embedding-boards

 

I hope this helps.

 

Kind regards.

 

Daniela

Developer Experience Team

This seems like it may be burdensome for a large group of consultants. Is it possible to migrate this to a feature request?

Hey @Daniela Gavidia nice to meet you, I’m the sales rep working with @Jeff Carnahan. Isn’t something like what he’s asking possible by using our open API/SDK? https://developers.miro.com/docs/welcome

If his team develops an app can they use it to display a banner on every board? I’m no developer so I’m not familiar with what all this entails. But is it possible?

Userlevel 4
Badge

@Jeff Carnahan If you’d like this to be integrated in the product, please add this idea as a feature request:
https://community.miro.com/wish-list-32?sort=votes.desc
The team checks the Wish List regularly and ideas that have a lot of interest might get implemented.

 

@Chris Williams You could build an app (web-plugin) that adds a pop-up with the T&C when it loads. 
https://developers.miro.com/docs/how-to-start

In the web-plugin code, you would have to open a modal window with the T&C. The modal window would look like this:
https://developers.miro.com/docs/how-to-use-extension-points#section-custom-view-modalwindow

You would need to add some javascript like this to open the modal window:

miro.onReady(() => {
miro.board.ui.openModal('terms-and-conditions.html');
});

Be aware that apps are installed per team. So, all your boards in the team would have this pop up. It is an interesting option to explore. 

 

Kind regards.

 

Daniela

Reply