• Resolved Marin Marinov

    (@mpmarinov)


    Hello everyone,

    I would like to ask if someone also has the problem with redirect in button and iframe=”1″ because of the cache with the forms?

    Mine is the following:

    • I have made redirect in a form with button and jQuery.
    • But so that my form can load in the website after the last updates and W3 Total Cache, I use iframe = “1” as recommended by the plugin creator. Everything is fine so far. My form loads in the website. I have other forms that I use with:

    (function goToURL() {
    })();

    loads.

    After the iframe it doesn’t work anymore because it wants to load iframe in iframe.

    The question is: How can I fix it?

    Thanks.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author CodePeople2

    (@codepeople2)

    Hello @mpmarinov

    If you want the browser and not the iframe section to navigate to another page, you must use the _top as the target.

    For example, if you have a link the structure would be <a target="_top">Click Here</a>

    Or if you are navigating from Javascript:

    window.parent.location.;

    Best regards.

    Thread Starter Marin Marinov

    (@mpmarinov)

    It works.

    Thank you very much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.