如何在我的网站上禁用“Airtable”的移动视图

I'm building a website using wordpress. On the site, I embled an "Airtable".

<iframe style="background: transparent; border: 1px solid #ccc;" src="https://airtable.com/embed/shr4DVQq5GWJEG4xV?backgroundColor=gray&amp;layout=card&amp;viewControls=on" width="100%" height="600" frameborder="0"></iframe>

This is the embled code. This works good viewing with a pc, but some important functions is not available on the mobile phone mode. What I dreadfully need is to disable the mobile mode even if the viewer is using a mobile device. I would greatly appreciate it if anyone can help me.

This should be work:

Put this one of them in head tags

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />

Or this:

<meta name="viewport" content="width=960; user-scalable=yes;" />