Announcement

Collapse
No announcement yet.

Geotrust script causing problems in Actinic

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Geotrust script causing problems in Actinic

    Hi!

    I have had a GeoTrust security certificate installed on my server and they have given me the following script to put on my page to tell users:

    Code:
    <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript" SRC="//smarticon.geotrust.com/si.js"></SCRIPT>
    The thing is, I have put it in my overall layout but it seems to be causing actinic to run slowly (have to wait ages to view a different page in the program) and is also causing some of the pages to display funnily.

    When I preview/upload the site it works fine in all browsers so it must be an actinic issue. Can anyone think why it would be acting like this?

    Thanks.

    #2
    Okay, the pages are displaying fine in actinic its just that it takes them so long to display correctly that i thought they weren't loading properly.

    How can I keep this script without causing a great deal of annoyance?!

    Comment


      #3
      this covers it....

      http://community.actinic.com/showthr...light=geotrust

      Comment


        #4
        Your best bet would be to tell Actinic to only generate the code when it uploads the pages by using IsPreviewMode, something like this should do it:-

        Code:
        <actinic:block if="%3cactinic%3avariable%20name%3d%22IsPreviewMode%22%20%2f%3e%20%3d%3d%20false">    
        <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript" SRC="//smarticon.geotrust.com/si.js"></SCRIPT>
        </actinic:block>
        Cheers

        David
        Located in Edinburgh UK

        http://twitter.com/mcfinster

        Comment


          #5
          Excellent... cheers guys!

          Comment

          Working...
          X