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

    (@northernbeacheswebsites)

    Hi @mydigicompany,

    We have the ability to change the source, this is done at the bottom of the General Options tab. We also have a PHP filter: gotowebinar_custom_thankyou_page which can be used to tweak the thank you page, it is declared like:

    apply_filters( ‘gotowebinar_custom_thankyou_page’, get_permalink($options[‘gotowebinar_custom_thankyou_page’]), $a[‘key’],$jsondata[‘subject’] );

    Thanks,

    Thread Starter mydigicompany

    (@mydigicompany)

    Hi,

    thanks for your anwser.
    I know about the “source” setting.
    But how can this “source” can be the “source” utm of my URL ?

    thanks

    Plugin Author Northern Beaches Websites

    (@northernbeacheswebsites)

    Hi @mydigicompany,

    If you mean the utm_source of the thank you/destination page after the form is submitted, you need to use that filter I mentioned and you can change the URL to whatever you want. If you aren’t sure how to implement the filter I recommend getting a developer to undertake this work. Alternatively, if you get the pro version of the plugin, the support covers low-level custom coding which would include a code snippet for modifying this URL which you can put in your themes functions.php file.

    I hope that helps ??

    Thanks @mydigicompany

    Thread Starter mydigicompany

    (@mydigicompany)

    thanks
    it’s not about the thank you page…
    i’d like the “source” field inside GTW be populated with the UTM of the page i put your form into
    For example, if someone use https://staging-wwwvaltusfr.kinsta.cloud/2022/01/14/article-du-webinar-de-fevrier/?utm_source=client&utm_medium=site&utm_campaign=seo and fill your form, inside GTW the source filed will be “client” for that submission/contact
    thanks

    Plugin Author Northern Beaches Websites

    (@northernbeacheswebsites)

    Hi @mydigicompany,

    Sorry I understand. We have a filter available for this. What you need to do is in the source setting in the plugin setting, put in some value, it can be whatever you want, but it just needs to be something.

    Then you can use the filter: gotowebinar_registration_source to change the source to the UTM of the page. This filter is declared like this:

    apply_filters( ‘gotowebinar_registration_source’, $options[‘gotowebinar_registration_source’], $a[‘key’],$jsondata[‘subject’] )

    So you can put code like this in your themes functions.php file:

    function gotowebinar_registration_source_callback( $source, $webinar_key, $webinar_subject ) {
        return 'Your new source here';
    }
    add_filter( 'gotowebinar_registration_source', 'gotowebinar_registration_source_callback', 10, 3 );

    As this is the free version I don’t provide full code work for your specific situation, as this requires custom development work. By getting the pro version of the plugin, it does include low-level customisations like this if you don’t have a developer on hand.

    Thank you,

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Tracking source ?’ is closed to new replies.