Hello Everyone, I am trying to embed app builder to my website and it is not working I follow all the steps in the documentation.
Could you describe what the issue is? Do you get an error message when embedding the iframe? Could you share an example page where you embedded the app?
Thank you mathieu, I did some edits on the html code and it is working now like this
<iframe width="100%" height="480" src="https://appbuilder.shapediver.com/v1/main/latest/?slug=MODEL_SLUG" referrerpolicy="origin" allowfullscreen style="overflow: hidden; border-width: 0;"></iframe>
<p>Your browser does not support iframes.</p>
1 Like
- Ensure the
referrerpolicy
attribute is correct and intended. - The
allowfullscreen
attribute should be self-closing in HTML5. - The
style
attribute can be simplified by removing theoverflow-x
andoverflow-y
properties asoverflow
alone is sufficient. - I added
https://
to the URL in thesrc
attribute to ensure the link is correctly formatted. - The
allowfullscreen
attribute is left as is, but ensure it matches your usage and the HTML specification.
1 Like
Thank you for your feedback regarding this documentation article! We will adapt it according to your notes.
Thank you for your support and quick answer. we are looking forward for more and more features in the plugin.