Hi @johnhelyar-1 ,
Hope you are well, and thanks for the question.
We double checked this, and HTML seems to be working fine. Please take a look at this screenshot, to see an example:
https://d.pr/i/2RqZG2
If you can’t recreate the screenshot, please let us know.
Also, please notice that we also included an iframe in the example as well. I was going to suggest this as a solution for your Gutenberg / Elementor question.
We have some people who use White Label CMS for lots of clients, and they actually have set up their own site specifically to pull in dashboards via iframes. This allows them update them in one place without having to update individual sites. We have also heard of examples of people changing the dashboard for holidays like Christmas etc, for a more personalised feel.
Hope this helps.
Hi there
Ok i have been able to get this working the only way it works if you switch on Make full-width if you don’t nothing shows up.
I have a basic system setup now but the only other problem I am having is adding a contact form to it as the system seems to remove some of the HTML code here is the code I am using
<div class="container">
<form action="/action_page.php">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="country">Country</label>
<select id="country" name="country">
<option value="australia">Australia</option>
<option value="canada">Canada</option>
<option value="usa">USA</option>
</select>
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
Seems to allow the textarea but not the input fields this is what is left after it gets removed
<div class="container">
<label for="fname">First Name</label>
<label for="lname">Last Name</label>
<label for="country">Country</label>
Australia
Canada
USA
<label for="subject">Subject</label>
<textarea id="subject" name="subject" style="height:200px"></textarea>
</div>
As you can see it removes lots this is just a form I grabbed from a site to test with can you help with this please
Hi John,
Thanks for getting back to us.
That is strange about only working in full width mode, in our tests it works fine without being in full width mode: https://d.pr/i/F1BudG
Regarding the form, you are correct, we strip out the form information when it is saved as a security precaution. Sorry about that. I don’t quite think you will be able to achieve what you want to do.