Announcement

Collapse
No announcement yet.

SSL Checkout Page - ShareThis

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

    SSL Checkout Page - ShareThis

    Hi,

    I have recently upgrade to a SSL Host so that the checkout is secure, although the encryption was only partial, and it was because of the ShareThis plug in referencing to a piece of jscript on their website.

    I need to block this script from popping up in the checkout pages within the head section.



    I tried a few block if's and they all never worked.


    Anyone got a solution?


    thanks

    #2
    Use the code below, this blocks code from Checkout page 0, 1 and 2.
    Code:
    <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%27Checkout%20Page%200%27%20AND%20%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%27Checkout%20Page%201%27%20AND%20%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%27Checkout%20Page%202%27" >
    CODE HERE
    </actinic:block>
    Note this does not include Shopping Cart and Receipt, it could be altered depending on your requirements.
    Peblaco

    Comment


      #3
      Originally posted by peblaco View Post
      Use the code below, this blocks code from Checkout page 0, 1 and 2.
      Code:
      <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%27Checkout%20Page%200%27%20AND%20%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%27Checkout%20Page%201%27%20AND%20%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%27Checkout%20Page%202%27" >
      CODE HERE
      </actinic:block>
      Note this does not include Shopping Cart and Receipt, it could be altered depending on your requirements.
      Worked perfectly, thankyou!

      Comment

      Working...
      X