Jump to content
  • 0

Jotform Prestashop 1.6.1.10 nie można dodać do CMS


bartogorzow

Question

Witam,

jak w temacie bo już mi ręce opadają. Potrzebuję dodać formularz w osobnej stronie CMS w ramach Presty i za nic nie mogę dodać kodu ze strony Jotform. Próbowałem już cały kod. Próbowałem z wykasowaniem <script> no i niestety za każdym razem komunikat: pole content jest nieprawidłowe. Oczywiście <iframe> włączone w ustawieniach. 

Bardzo was proszę o pomoc bo mnie się pomysły skończyły i rady znalezione w sieci nie pomogły.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Dokładnie taki jak poniżej. Support zaleca wywalenie całego <script> z kodu w prescie 1.6 tej najnowszej, ale to nadal nic nie zmienia. Albo pojawia się komunikat: pole content jest nieprawidłowe albo (co zauważyłem ostatnio) kod całkowicie znika po kliknięciu zapisz i podejrzyj.

 <iframe id="JotFormIFrame-70323894538362" onload="window.parent.scrollTo(0,0)" allowtransparency="true" src="https://form.jotformeu.com/70323894538362" frameborder="0" style="width:100%; height:1242px; border:none;" scrolling="no"> </iframe> <script type="text/javascript"> window.handleIFrameMessage = function(e) { var args = e.data.split(":"); var iframe = false; if (args.length > 2) { iframe = document.getElementById("JotFormIFrame-" + args[2]); } else { iframe = document.getElementById("JotFormIFrame"); } if (!iframe) return; switch (args[0]) { case "scrollIntoView": iframe.scrollIntoView(); break; case "setHeight": iframe.style.height = args[1] + "px"; break; case "collapseErrorPage": if (iframe.clientHeight > window.innerHeight) { iframe.style.height = window.innerHeight + "px"; } break; case "reloadPage": window.location.reload(); break; } var isJotForm = (e.origin.indexOf("jotform") > -1) ? true : false; if(isJotForm && "contentWindow" in iframe && "postMessage" in iframe.contentWindow) { var urls = {"docurl":encodeURIComponent(document.URL),"referrer":encodeURIComponent(document.referrer)}; iframe.contentWindow.postMessage(JSON.stringify({"type":"urls","value":urls}), "*"); } }; if (window.addEventListener) { window.addEventListener("message", handleIFrameMessage, false); } else if (window.attachEvent) { window.attachEvent("onmessage", handleIFrameMessage); } if(window.location.href && window.location.href.indexOf("?") > -1) { var ifr = false; if (args.length > 2) { ifr = document.getElementById("JotFormIFrame-" + args[2]); } else { ifr = document.getElementById("JotFormIFrame"); } var get = window.location.href.substr(window.location.href.indexOf("?") + 1); if(ifr && get.length > 0) { var src = ifr.src; src = src.indexOf("?") > -1 ? src + "&" + get : src + "?" + get; ifr.src = src; } } </script>
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...