Site Seal not working with WEBSITE X5
Autor: Peter LewisMy website is at https://www.djpeter.co.za
on this page Peter Lewis: https://www.djpeter.co.za/home.html
I have a site seal that is suppose to give information when hovering over it or when you click it , if also opens a window.
there are 2 code snippets you need to place into the code.
1 Just before /HEAD
2 Just before /BODY.
Which i did on the advanced tab. But it does not work !
I made a test sample page to test it using a tct editor and it works
https://www.djpeter.co.za/test.html
the codes are
Before /HEAD
<script type="text/javascript"> //<![CDATA[
var tlJsHost = (([removed].protocol == "https:") ? "https://secure.comodo.com/" : "http://www.trustlogo.com/");
[removed](unescape("[removed][removed]"));
//]]>
</script>
Before /BODY
<script language="JavaScript" type="text/javascript">
TrustLogo("https://www.djpeter.co.za/images/comodo_secure_52x63_transp.png", "CL1", "none");
</script>
<a href="https://ssl.comodo.com" id="comodoTL">SSL Certificate</a>
Please can you tell me why they do not work
Autor
Something else I just found very interesting is that my videos on my videos page which are links to youtube do not work anymore.
They work find on the prievew on my computer, but on the live site they do not work.
Any Ideas ?
https://www.djpeter.co.za/videos.html
Autor
I had to go into the x5engine.deferrable.js and change the http to https on the following line
I had to do it on the site. I tried to do it on the Program files directory but it would not allow me to save the file.
(more)e:"text/javascript",src:"http://www.youtube.com/iframe_api"}),e("head").append(Q),n.onYouTubeIframeA(more)
Hi Peter.
We highli disencourage modifying WebSite generated file this way, as it may have side effects on the rest of the website.
Your site is currently executing both https and http operations, which block your videos.
Please return the website to it's original state and reexport it once again, and then wait for the community to help you out with your custom code.
Hope I've been helpful
Autor
Hi Stefano
I have had NO responses at all on how to fix the problem.
The most important one is the SSL certificate view that is not working.
Have you any ideas on that ?
Hi Peter.
As I said, we do not offer support for custom code.
You have to wait for the community to help you there, as this kind of questions don't concern any of the software's native features.
That's why, previous your consent, I will turn the topic public.
Hope I've been helpful
Autor
Hi
i have not had any responses, did you turn this post public ?
It seems like it is a speed issue. If i add some delays into the code so that all the code is loaded first, then it works but it adds lines to the website that i do not want
<script type="text/javascript"> //<![CDATA[
var tlJsHost = (([removed].protocol == "https:") ? "https://secure.comodo.com/" : "http://www.trustlogo.com/");
[removed](unescape("[removed][removed]"));
//]]>
$(document).ready(function() {
setTimeout(function() {
$("#imFooterBg").css('position', 'inherit');
$('body').children().first().css('position', 'inherit');
}, 3000);
})
</script>
Thanks
Peter