Save a cookie value after checkout on order creation as meta data in WoocommerceHow to get a cookie value in Woocommerce email notifications?Woocommerce, Order Meta with EmailSave woocommerce ITEM meta dataWooCommerce order complete email custom meta fieldsGet a custom field array values within WooCommerce email order metaChange default checkout field value on order creation in Woocommerce 3Hooks for order creation exclusively in Woocommerce 3Display order custom meta data in Woocommerce Print Invoices & Packing ListsCollect checked Checkboxes and save values in Woocommerce order metaHow to get a cookie value in Woocommerce email notifications?Is there any way to Save a Custom Plugin's Post ID into Post Meta Database and Display it to Any Wordpress or PHP page?

Top off gas with old oil, is that bad?

Medic abilities

Why did UK NHS pay for homeopathic treatments?

Intheritance at package visibility in Java

Is the order of words purely based on convention?

I transpose the source code, you transpose the input!

Do interval ratios take overtones into account or solely the fundamental frequency?

If a spaceship ran out of fuel somewhere in space between Earth and Mars, does it slowly drift off to the Sun?

Are fuzzy sets appreciated by OR community?

Why does C++ have 'Undefined Behaviour' and other languages like C# or Java don't?

How to deal with a PC being played as homophobic?

When does a UA Sea Sorcerer choose to use the Curse of the Sea feature's additional effect?

Received a package but didn't order it

Diminutive -ula

I cannot take my Macbook Pro 2015 in my Aegean/Lufthansa flight?

Algorithm that generates orthogonal vectors: C++ implementation

Practicality of 30 year fixed mortgage at 55 years of age

Character Transformation

Why does the leading tone (G#) go to E rather than A in this example?

What should I consider when deciding whether to delay an exam?

Need Improvement on Script Which Continuously Tests Website

One-digit products in a row of numbers

Who is responsible to align all Warhammer 40k books or stories?

New road bike: alloy dual pivot brakes work poorly



Save a cookie value after checkout on order creation as meta data in Woocommerce


How to get a cookie value in Woocommerce email notifications?Woocommerce, Order Meta with EmailSave woocommerce ITEM meta dataWooCommerce order complete email custom meta fieldsGet a custom field array values within WooCommerce email order metaChange default checkout field value on order creation in Woocommerce 3Hooks for order creation exclusively in Woocommerce 3Display order custom meta data in Woocommerce Print Invoices & Packing ListsCollect checked Checkboxes and save values in Woocommerce order metaHow to get a cookie value in Woocommerce email notifications?Is there any way to Save a Custom Plugin's Post ID into Post Meta Database and Display it to Any Wordpress or PHP page?






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








1















I want to save order meta data from plugin file to display ticket ID number to email notification, I am using a code which save Post ID by cookie to order meta data but the problem is my existing code grabs data from thankyou.php page which runs at last of woocommerce order process, is that possible to save the data directly from plugin files via cookies or any other method, so that I can display it easily on any php page ?



I am using the code from this thread How to get a cookie value in Woocommerce email notifications? It's an answer to one of my question.



This function prints the Ticket ID which is $post->ID in Email Template which I want to Save and Display in other php files.



 if ( ! function_exists( 'yith_wcevti_set_args_mail_template' ) ) {
/**
* Define the args to mail template
* @param $post
* @return array|mixed|void
*/
function yith_wcevti_set_args_mail_template($post)
{
$args = array();

$post_meta = get_post_meta($post->ID, '', true);


Any help is appreciated.










share|improve this question
































    1















    I want to save order meta data from plugin file to display ticket ID number to email notification, I am using a code which save Post ID by cookie to order meta data but the problem is my existing code grabs data from thankyou.php page which runs at last of woocommerce order process, is that possible to save the data directly from plugin files via cookies or any other method, so that I can display it easily on any php page ?



    I am using the code from this thread How to get a cookie value in Woocommerce email notifications? It's an answer to one of my question.



    This function prints the Ticket ID which is $post->ID in Email Template which I want to Save and Display in other php files.



     if ( ! function_exists( 'yith_wcevti_set_args_mail_template' ) ) {
    /**
    * Define the args to mail template
    * @param $post
    * @return array|mixed|void
    */
    function yith_wcevti_set_args_mail_template($post)
    {
    $args = array();

    $post_meta = get_post_meta($post->ID, '', true);


    Any help is appreciated.










    share|improve this question




























      1












      1








      1


      1






      I want to save order meta data from plugin file to display ticket ID number to email notification, I am using a code which save Post ID by cookie to order meta data but the problem is my existing code grabs data from thankyou.php page which runs at last of woocommerce order process, is that possible to save the data directly from plugin files via cookies or any other method, so that I can display it easily on any php page ?



      I am using the code from this thread How to get a cookie value in Woocommerce email notifications? It's an answer to one of my question.



      This function prints the Ticket ID which is $post->ID in Email Template which I want to Save and Display in other php files.



       if ( ! function_exists( 'yith_wcevti_set_args_mail_template' ) ) {
      /**
      * Define the args to mail template
      * @param $post
      * @return array|mixed|void
      */
      function yith_wcevti_set_args_mail_template($post)
      {
      $args = array();

      $post_meta = get_post_meta($post->ID, '', true);


      Any help is appreciated.










      share|improve this question
















      I want to save order meta data from plugin file to display ticket ID number to email notification, I am using a code which save Post ID by cookie to order meta data but the problem is my existing code grabs data from thankyou.php page which runs at last of woocommerce order process, is that possible to save the data directly from plugin files via cookies or any other method, so that I can display it easily on any php page ?



      I am using the code from this thread How to get a cookie value in Woocommerce email notifications? It's an answer to one of my question.



      This function prints the Ticket ID which is $post->ID in Email Template which I want to Save and Display in other php files.



       if ( ! function_exists( 'yith_wcevti_set_args_mail_template' ) ) {
      /**
      * Define the args to mail template
      * @param $post
      * @return array|mixed|void
      */
      function yith_wcevti_set_args_mail_template($post)
      {
      $args = array();

      $post_meta = get_post_meta($post->ID, '', true);


      Any help is appreciated.







      php wordpress cookies woocommerce orders






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 28 at 19:26









      LoicTheAztec

      111k15 gold badges100 silver badges140 bronze badges




      111k15 gold badges100 silver badges140 bronze badges










      asked Mar 28 at 18:34









      Sanad QaziSanad Qazi

      286 bronze badges




      286 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/4.0/"u003ecc by-sa 4.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%2f55404671%2fsave-a-cookie-value-after-checkout-on-order-creation-as-meta-data-in-woocommerce%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
















          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%2f55404671%2fsave-a-cookie-value-after-checkout-on-order-creation-as-meta-data-in-woocommerce%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