• Hey guys,

    I have built a landing page in word press with a form to fill out to watch a free video. I am using the formidable plugin and what I want to happen is when the user fills out the form and clicks submit I want the to be redirected to the url where the free video is.

    So my question…Is there any way to do this with the formidable plugin or do you know of a plugin that will do this?

    Thanks,
    Anthony

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey Anthony,
    I’ll be adding this very soon to the Pro version, but you can use this in a separate plugin:


    add_action('frm_after_create_entry', 'your_function_name', 25 );
    function your_function_name($entry_id){
    global $frm_entry;
    $entry = $frm_entry->getOne($entry_id);
    if ($entry->form_id == INSERT YOUR FORM ID HERE){
    die("<script type='text/javascript'>window.location='https://yoursite.com/success_page' </script>");
    }
    }

    Hi Stephanie, this is also something we are looking for:-

    We have a link on a page that points to the page with the form on it and rather than just get the “thank you message,” we’d like the form to redirect back to the page we linked from. Is that something that is on the horizon for Formidable?

    We’re very impressed with the plugin – it’s probably one of the best ones we’ve used with WordPress so far.

    Regards,

    Rob

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to redirect page after the submit button is hit using the formidable plugin’ is closed to new replies.