Title: Tracking source ?
Last modified: February 12, 2022

---

# Tracking source ?

 *  Resolved [mydigicompany](https://wordpress.org/support/users/mydigicompany/)
 * (@mydigicompany)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/tracking-source/)
 * Hi !
    Nice plugin so far, I miss one essential thing. With “regular” GTW registration
   forms, i use “source” and send several links depending my contacts typology.
 * I would need to reproduce this with the plugin inside a classic WP post. I tried
   with UTM inside the url of the WP post that include the registration form, but
   the UTM data dont get added to my GTW registrations.
 * for exemple : [https://staging-wwwvaltusfr.kinsta.cloud/2022/01/14/article-du-webinar-de-fevrier/?utm_source=client&utm_medium=site&utm_campaign=seo](https://staging-wwwvaltusfr.kinsta.cloud/2022/01/14/article-du-webinar-de-fevrier/?utm_source=client&utm_medium=site&utm_campaign=seo)
 * One other ok solution would be to populate a spreadsheet google doc with all 
   the registration infos and the specific UTM ?
 * of course a solution with the paid version would be nice and we’ll take the pro
   version immediatly
 * thanks

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

 *  Plugin Author [Northern Beaches Websites](https://wordpress.org/support/users/northernbeacheswebsites/)
 * (@northernbeacheswebsites)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/tracking-source/#post-15361003)
 * Hi [@mydigicompany](https://wordpress.org/support/users/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](https://wordpress.org/support/users/mydigicompany/)
 * (@mydigicompany)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/tracking-source/#post-15361769)
 * 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](https://wordpress.org/support/users/northernbeacheswebsites/)
 * (@northernbeacheswebsites)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/tracking-source/#post-15361799)
 * Hi [@mydigicompany](https://wordpress.org/support/users/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](https://wordpress.org/support/users/mydigicompany/)
 *  Thread Starter [mydigicompany](https://wordpress.org/support/users/mydigicompany/)
 * (@mydigicompany)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/tracking-source/#post-15368373)
 * 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](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](https://wordpress.org/support/users/northernbeacheswebsites/)
 * (@northernbeacheswebsites)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/tracking-source/#post-15369260)
 * Hi [@mydigicompany](https://wordpress.org/support/users/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.

 * ![](https://ps.w.org/wp-gotowebinar/assets/icon.svg?rev=2182596)
 * [WP GoToWebinar](https://wordpress.org/plugins/wp-gotowebinar/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-gotowebinar/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-gotowebinar/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-gotowebinar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-gotowebinar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-gotowebinar/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [Northern Beaches Websites](https://wordpress.org/support/users/northernbeacheswebsites/)
 * Last activity: [4 years, 3 months ago](https://wordpress.org/support/topic/tracking-source/#post-15369260)
 * Status: resolved