Woocommerce Subscriptions - Writing a hook to track free trial conversionswoocommerce subscription free trail textWordPress WooCommerce: Adjust free trial length with coupon?Woocommerce Subscriptions: Stop manual renewals from going on holdWoocommerce Subscription - Changing Free Trial TextWooCommerce subscriptions “invalid recurring shipping method”How to stop woocommerce from send email to admin for free order?Woocommerce Subscriptions getting added as line items in cart after payment madeWooCommerce Subscriptions: Charge for first order on synchronized renewalWhere to add a hooked function code snippet for Woocommerce?

Shipped package arrived - didn't order, possible scam?

Soda water first stored in refrigerator and then outside

Better random (unique) file name

How predictable is $RANDOM really?

What do I need to see before Spider-Man: Far From Home?

Is there a minimum amount of electricity that can be fed back into the grid?

Is this standard Japanese employment negotiations, or am I missing something?

How would a sea turtle end up on its back?

How important is it for multiple POVs to run chronologically?

What are some bad ways to subvert tropes?

Are "confidant" and "confident" homophones?

As a supervisor, what feedback would you expect from a PhD who quits?

Park the computer

Is reasonable to assume that the 食 in 月食/日食 can be interpreted as the sun/moon being "eaten" during an eclipse?

Why do most airliners have underwing engines, while business jets have rear-mounted engines?

Minor differences between two recorded guitars

Gory anime with pink haired girl escaping an asylum

What is the highest level of accuracy in motion control a Victorian society could achieve?

How do I talk to my wife about unrealistic expectations?

Tiny URL creator

Why do people prefer metropolitan areas, considering monsters and villains?

Why do Martians have to wear space helmets?

Groups where no elements commute except for the trivial cases

Why is there paternal, for fatherly, fraternal, for brotherly, but no similar word for sons?



Woocommerce Subscriptions - Writing a hook to track free trial conversions


woocommerce subscription free trail textWordPress WooCommerce: Adjust free trial length with coupon?Woocommerce Subscriptions: Stop manual renewals from going on holdWoocommerce Subscription - Changing Free Trial TextWooCommerce subscriptions “invalid recurring shipping method”How to stop woocommerce from send email to admin for free order?Woocommerce Subscriptions getting added as line items in cart after payment madeWooCommerce Subscriptions: Charge for first order on synchronized renewalWhere to add a hooked function code snippet for Woocommerce?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am using woocommerce subscriptions for my site which offers a SAAS subscription service with a free trial.



I am currently able to easily track conversions from page visitors into free trial signups. The tricky part is tracking free trial conversions into paid subscription conversions.



The way its set up is the free trial signup acts as a $0 "parent order" in woocommerce, and the free trial to paid subscription conversion is attributed as a renewal order (this time with an actual dollar value).



I have two goals I want to achieve:



  1. Send admin emails ONLY when a customer converts to a paid subscription. Currently woocommerce subscriptions has an option to send an email for every renewal order, but I would prefer to have it only send emails for the free trial to subscription conversions, aka the 1st renewal order for a given customer.


  2. I would like to send this free trial to paid subscription data to google analytics and track it as a conversion metric. We currently have google analytics set up to at least track free trial signups, but we have no way of checking conversions into paid subscriptions within google analytics.


I have a few ideas on how to modify the woocommerce subscriptions code to achieve this. For example, class-wcs-email-processing-renewal-order.php trigger() method might be a good place to start for the email issue. However, I would like to avoid doing this since anytime I update woocommerce subscriptions it would override my changes.



Any tips on this issue would be immensely appreciated!










share|improve this question




























    0















    I am using woocommerce subscriptions for my site which offers a SAAS subscription service with a free trial.



    I am currently able to easily track conversions from page visitors into free trial signups. The tricky part is tracking free trial conversions into paid subscription conversions.



    The way its set up is the free trial signup acts as a $0 "parent order" in woocommerce, and the free trial to paid subscription conversion is attributed as a renewal order (this time with an actual dollar value).



    I have two goals I want to achieve:



    1. Send admin emails ONLY when a customer converts to a paid subscription. Currently woocommerce subscriptions has an option to send an email for every renewal order, but I would prefer to have it only send emails for the free trial to subscription conversions, aka the 1st renewal order for a given customer.


    2. I would like to send this free trial to paid subscription data to google analytics and track it as a conversion metric. We currently have google analytics set up to at least track free trial signups, but we have no way of checking conversions into paid subscriptions within google analytics.


    I have a few ideas on how to modify the woocommerce subscriptions code to achieve this. For example, class-wcs-email-processing-renewal-order.php trigger() method might be a good place to start for the email issue. However, I would like to avoid doing this since anytime I update woocommerce subscriptions it would override my changes.



    Any tips on this issue would be immensely appreciated!










    share|improve this question
























      0












      0








      0








      I am using woocommerce subscriptions for my site which offers a SAAS subscription service with a free trial.



      I am currently able to easily track conversions from page visitors into free trial signups. The tricky part is tracking free trial conversions into paid subscription conversions.



      The way its set up is the free trial signup acts as a $0 "parent order" in woocommerce, and the free trial to paid subscription conversion is attributed as a renewal order (this time with an actual dollar value).



      I have two goals I want to achieve:



      1. Send admin emails ONLY when a customer converts to a paid subscription. Currently woocommerce subscriptions has an option to send an email for every renewal order, but I would prefer to have it only send emails for the free trial to subscription conversions, aka the 1st renewal order for a given customer.


      2. I would like to send this free trial to paid subscription data to google analytics and track it as a conversion metric. We currently have google analytics set up to at least track free trial signups, but we have no way of checking conversions into paid subscriptions within google analytics.


      I have a few ideas on how to modify the woocommerce subscriptions code to achieve this. For example, class-wcs-email-processing-renewal-order.php trigger() method might be a good place to start for the email issue. However, I would like to avoid doing this since anytime I update woocommerce subscriptions it would override my changes.



      Any tips on this issue would be immensely appreciated!










      share|improve this question














      I am using woocommerce subscriptions for my site which offers a SAAS subscription service with a free trial.



      I am currently able to easily track conversions from page visitors into free trial signups. The tricky part is tracking free trial conversions into paid subscription conversions.



      The way its set up is the free trial signup acts as a $0 "parent order" in woocommerce, and the free trial to paid subscription conversion is attributed as a renewal order (this time with an actual dollar value).



      I have two goals I want to achieve:



      1. Send admin emails ONLY when a customer converts to a paid subscription. Currently woocommerce subscriptions has an option to send an email for every renewal order, but I would prefer to have it only send emails for the free trial to subscription conversions, aka the 1st renewal order for a given customer.


      2. I would like to send this free trial to paid subscription data to google analytics and track it as a conversion metric. We currently have google analytics set up to at least track free trial signups, but we have no way of checking conversions into paid subscriptions within google analytics.


      I have a few ideas on how to modify the woocommerce subscriptions code to achieve this. For example, class-wcs-email-processing-renewal-order.php trigger() method might be a good place to start for the email issue. However, I would like to avoid doing this since anytime I update woocommerce subscriptions it would override my changes.



      Any tips on this issue would be immensely appreciated!







      wordpress woocommerce hook-woocommerce woocommerce-subscriptions






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 25 at 20:25









      Sam SebreeSam Sebree

      63 bronze badges




      63 bronze badges






















          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55345871%2fwoocommerce-subscriptions-writing-a-hook-to-track-free-trial-conversions%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55345871%2fwoocommerce-subscriptions-writing-a-hook-to-track-free-trial-conversions%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript