• Resolved sayalia

    (@sayalia)


    I have integrated the GTW form in my WP site. If the user lands on this page through Email and then submits the embedded GTW form how can I capture the Source in GTW dashboard registration list.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Northern Beaches Websites

    (@northernbeacheswebsites)

    Hi @sayalia,

    If you need the source to be static, that is, the same for all webinar registration forms on your site. You can change the source at the very bottom of the “General Options” tab.

    If you need the source to be dynamic, we have a developer filter which can be used for setting the source for a registration form. This can be used like below:

    add_filter('gotowebinar_registration_source','gotowebinar_registration_source_callback', 10, 3);

    function gotowebinar_registration_source_callback($source, $webinar_key, $webinar_title){

    //muck around with the source here...

    return $source;

    }


    I hope that helps. Thanks,

    Thread Starter sayalia

    (@sayalia)

    Thank you! This helps.

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.