Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
Hello Ben
I have a problem with a page after setting the SSL,
My goal was to integrate a foreign homepage into a page in my online, until now has always gone but since I the 1.2 and at the same time on SSL adjusted funkuniert no more, can help me?
Best regards
mimmo
https://www.foto-mimmo.ch/LG/Termin/
This is the function to insert ..
<!-- Termine -->
<iframe
src="https://1184.appointmind.net/?cap=MQ=="
id="calendarIframe"
style="border:none;width:100%;height:1300px;padding:0;margin:0;"
frameborder="0">
</iframe>
Offline
For the record, I thoroughly disapprove of iframe.
The problem is that the HTML is malformed. It's a mess, actually.
See the "<" at the start, instead of "<" ...
Also, several instances of """ instead of actual quotation marks ...
And you've coded an <a> element into your iframe's src attribute ...
<iframe
src="<a href="https://1184.appointmind.net/?cap=MQ">https://1184.appointmind.net/?cap=MQ</a>=="
id="calendarIframe" style="border:none;width:100%;height:1300px;padding:0;margin:0;" frameborder="0">
</iframe>
The entire thing SHOULD be written as:
<iframe src="https://1184.appointmind.net/?cap=MQ</a>==" id="calendarIframe" style="border:none;width:100%;height:1300px;padding:0;margin:0;" frameborder="0"></iframe>
Offline
Pages: 1