Attaching WP username to form submission using custom insert PHP code no longer working

  • ccranney
    Asked on November 25, 2014 at 5:35 AM

    Hi guys.

     

    I have a form on my website which I have a hidden field on that captures the logged in username and attaches it to the form. Now this is no longer working and instead the following information is being transferred to the form:

     

    [insert_php] global $current_user; get_currentuserinfo(); echo $current_user->user_login; [/insert_php]!

     

    Code I have used in iframe:

     

    <iframe id="JotFormIFrame" style="width: 100%; height: 1011px; border: none;" src="//form.jotformeu.com/form/40753265708357?username32=[insert_php] global $current_user; get_currentuserinfo(); echo $current_user-&gt;user_login; [/insert_php]" width="100%" height="1020px" frameborder="0" scrolling="no"></iframe>

    <script type="text/javascript">// <![CDATA[

    window.handleIFrameMessage = function(e) {var args = e.data.split(":");var iframe = document.getElementById("JotFormIFrame");if (!iframe)return;switch (args[0]) {case "scrollIntoView":iframe.scrollIntoView();break;case "setHeight":iframe.style.height = args[1] + "px";break;}};if (window.addEventListener) {window.addEventListener("message", handleIFrameMessage, false);} else if (window.attachEvent) {window.attachEvent("onmessage", handleIFrameMessage);}

    // ]]></script>

     

    Any ideas how I can resolve this problem? Thanks in advance.

  • jonathan
    Replied on November 25, 2014 at 8:31 AM

    Hi,

    From your original post here https://www.jotform.com/answers/357275 where you have created this custom solution, can you please double check if the plugin insert PHP is working?

    Attaching WP username to form submission using custom insert PHP code no longer working Image 1 Screenshot 20

     

    that can be the possible cause why the PHP code is no longer executing within your WP page.

    Hope this help. Please update us if still not resolve.

    Thanks.

     

     

  • ccranney
    Replied on November 26, 2014 at 4:05 AM

    You're the man Jonathan!