Wordpress Advanced Custom Field - Include Tracking Number in order page











up vote
0
down vote

favorite












I use ACF to send the tracking number to my customers . I created a field where I manualy add a tracking number and it send a message to the customer on the order completion email. Here is the code:



//add tracking number for UPS into confirmation page
add_action ('woocommerce_email_before_order_table', 'acf_trackingnumberups', 20);


function acf_trackingnumberups( $order ) {

if (get_field('trackingnumberups', $order->get_id())) { // Only show if field is filled

?>
<h3>Your tracking number: <strong><?php the_field('trackingnumberups', $order->get_id()); ?></strong></h3>
<p>You may track your order with the number above, here: <a style="color: #0073aa;" href="https://www.ups.com/tracking/tracking.html">UPS Tracking</a> </p>
<?php

}

}


We have a problem with the flow.



I want to be able to 1) add the tracking code, 2) set the order to complete and 3) update.



Now I have to 1) add the tracking code, 2) update, 3) set the order to complete and 4) update again.



Else, the custom field will not be fetched in the order completion email.



I tried to remove this line:



if (get_field('trackingnumberups', $order->get_id())) { // Only show if field is filled 


It worked but it include the tracking code on all notifications.



I've landed on a plugin that add a save button to a custom field and run an Ajax calls.



Is there a way I can save the page using Ajax ?



Here is the plugin: https://github.com/SnakeO/acf-admin-button-field










share|improve this question




























    up vote
    0
    down vote

    favorite












    I use ACF to send the tracking number to my customers . I created a field where I manualy add a tracking number and it send a message to the customer on the order completion email. Here is the code:



    //add tracking number for UPS into confirmation page
    add_action ('woocommerce_email_before_order_table', 'acf_trackingnumberups', 20);


    function acf_trackingnumberups( $order ) {

    if (get_field('trackingnumberups', $order->get_id())) { // Only show if field is filled

    ?>
    <h3>Your tracking number: <strong><?php the_field('trackingnumberups', $order->get_id()); ?></strong></h3>
    <p>You may track your order with the number above, here: <a style="color: #0073aa;" href="https://www.ups.com/tracking/tracking.html">UPS Tracking</a> </p>
    <?php

    }

    }


    We have a problem with the flow.



    I want to be able to 1) add the tracking code, 2) set the order to complete and 3) update.



    Now I have to 1) add the tracking code, 2) update, 3) set the order to complete and 4) update again.



    Else, the custom field will not be fetched in the order completion email.



    I tried to remove this line:



    if (get_field('trackingnumberups', $order->get_id())) { // Only show if field is filled 


    It worked but it include the tracking code on all notifications.



    I've landed on a plugin that add a save button to a custom field and run an Ajax calls.



    Is there a way I can save the page using Ajax ?



    Here is the plugin: https://github.com/SnakeO/acf-admin-button-field










    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I use ACF to send the tracking number to my customers . I created a field where I manualy add a tracking number and it send a message to the customer on the order completion email. Here is the code:



      //add tracking number for UPS into confirmation page
      add_action ('woocommerce_email_before_order_table', 'acf_trackingnumberups', 20);


      function acf_trackingnumberups( $order ) {

      if (get_field('trackingnumberups', $order->get_id())) { // Only show if field is filled

      ?>
      <h3>Your tracking number: <strong><?php the_field('trackingnumberups', $order->get_id()); ?></strong></h3>
      <p>You may track your order with the number above, here: <a style="color: #0073aa;" href="https://www.ups.com/tracking/tracking.html">UPS Tracking</a> </p>
      <?php

      }

      }


      We have a problem with the flow.



      I want to be able to 1) add the tracking code, 2) set the order to complete and 3) update.



      Now I have to 1) add the tracking code, 2) update, 3) set the order to complete and 4) update again.



      Else, the custom field will not be fetched in the order completion email.



      I tried to remove this line:



      if (get_field('trackingnumberups', $order->get_id())) { // Only show if field is filled 


      It worked but it include the tracking code on all notifications.



      I've landed on a plugin that add a save button to a custom field and run an Ajax calls.



      Is there a way I can save the page using Ajax ?



      Here is the plugin: https://github.com/SnakeO/acf-admin-button-field










      share|improve this question















      I use ACF to send the tracking number to my customers . I created a field where I manualy add a tracking number and it send a message to the customer on the order completion email. Here is the code:



      //add tracking number for UPS into confirmation page
      add_action ('woocommerce_email_before_order_table', 'acf_trackingnumberups', 20);


      function acf_trackingnumberups( $order ) {

      if (get_field('trackingnumberups', $order->get_id())) { // Only show if field is filled

      ?>
      <h3>Your tracking number: <strong><?php the_field('trackingnumberups', $order->get_id()); ?></strong></h3>
      <p>You may track your order with the number above, here: <a style="color: #0073aa;" href="https://www.ups.com/tracking/tracking.html">UPS Tracking</a> </p>
      <?php

      }

      }


      We have a problem with the flow.



      I want to be able to 1) add the tracking code, 2) set the order to complete and 3) update.



      Now I have to 1) add the tracking code, 2) update, 3) set the order to complete and 4) update again.



      Else, the custom field will not be fetched in the order completion email.



      I tried to remove this line:



      if (get_field('trackingnumberups', $order->get_id())) { // Only show if field is filled 


      It worked but it include the tracking code on all notifications.



      I've landed on a plugin that add a save button to a custom field and run an Ajax calls.



      Is there a way I can save the page using Ajax ?



      Here is the plugin: https://github.com/SnakeO/acf-admin-button-field







      wordpress field advanced-custom-fields custom-fields






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 26 at 21:01

























      asked Nov 21 at 20:17









      Olivier Bigras-morin

      64




      64
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          I found the solution.



          I forgot to save the values registered from the custom field before adding the information to the order email. No need to add an Ajax button under the field. Also, the plugin is no longer supported.



              // save input from metabox
          add_action( 'save_post', 'bdev_save_postnord_data_to_order', 10, 1 );
          if ( ! function_exists( 'bdev_save_postnord_data_to_order' ) )
          {

          function bdev_save_postnord_data_to_order( $post_id ) {

          if ( ! isset( $_POST[ 'postnord_meta_field_nonce' ] ) ) {
          return $post_id;
          }
          $nonce = $_REQUEST[ 'postnord_meta_field_nonce' ];

          if ( ! wp_verify_nonce( $nonce ) ) {
          return $post_id;
          }

          if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
          return $post_id;
          }

          if ( 'page' == $_POST[ 'post_type' ] ) {

          if ( ! current_user_can( 'edit_page', $post_id ) ) {
          return $post_id;
          }
          } else {

          if ( ! current_user_can( 'edit_post', $post_id ) ) {
          return $post_id;
          }
          }
          update_post_meta( $post_id, '_postnord_field_data', $_POST[ 'postnord_data_name' ] );
          }
          }





          share|improve this answer























            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',
            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%2f53419872%2fwordpress-advanced-custom-field-include-tracking-number-in-order-page%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote













            I found the solution.



            I forgot to save the values registered from the custom field before adding the information to the order email. No need to add an Ajax button under the field. Also, the plugin is no longer supported.



                // save input from metabox
            add_action( 'save_post', 'bdev_save_postnord_data_to_order', 10, 1 );
            if ( ! function_exists( 'bdev_save_postnord_data_to_order' ) )
            {

            function bdev_save_postnord_data_to_order( $post_id ) {

            if ( ! isset( $_POST[ 'postnord_meta_field_nonce' ] ) ) {
            return $post_id;
            }
            $nonce = $_REQUEST[ 'postnord_meta_field_nonce' ];

            if ( ! wp_verify_nonce( $nonce ) ) {
            return $post_id;
            }

            if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
            return $post_id;
            }

            if ( 'page' == $_POST[ 'post_type' ] ) {

            if ( ! current_user_can( 'edit_page', $post_id ) ) {
            return $post_id;
            }
            } else {

            if ( ! current_user_can( 'edit_post', $post_id ) ) {
            return $post_id;
            }
            }
            update_post_meta( $post_id, '_postnord_field_data', $_POST[ 'postnord_data_name' ] );
            }
            }





            share|improve this answer



























              up vote
              0
              down vote













              I found the solution.



              I forgot to save the values registered from the custom field before adding the information to the order email. No need to add an Ajax button under the field. Also, the plugin is no longer supported.



                  // save input from metabox
              add_action( 'save_post', 'bdev_save_postnord_data_to_order', 10, 1 );
              if ( ! function_exists( 'bdev_save_postnord_data_to_order' ) )
              {

              function bdev_save_postnord_data_to_order( $post_id ) {

              if ( ! isset( $_POST[ 'postnord_meta_field_nonce' ] ) ) {
              return $post_id;
              }
              $nonce = $_REQUEST[ 'postnord_meta_field_nonce' ];

              if ( ! wp_verify_nonce( $nonce ) ) {
              return $post_id;
              }

              if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
              return $post_id;
              }

              if ( 'page' == $_POST[ 'post_type' ] ) {

              if ( ! current_user_can( 'edit_page', $post_id ) ) {
              return $post_id;
              }
              } else {

              if ( ! current_user_can( 'edit_post', $post_id ) ) {
              return $post_id;
              }
              }
              update_post_meta( $post_id, '_postnord_field_data', $_POST[ 'postnord_data_name' ] );
              }
              }





              share|improve this answer

























                up vote
                0
                down vote










                up vote
                0
                down vote









                I found the solution.



                I forgot to save the values registered from the custom field before adding the information to the order email. No need to add an Ajax button under the field. Also, the plugin is no longer supported.



                    // save input from metabox
                add_action( 'save_post', 'bdev_save_postnord_data_to_order', 10, 1 );
                if ( ! function_exists( 'bdev_save_postnord_data_to_order' ) )
                {

                function bdev_save_postnord_data_to_order( $post_id ) {

                if ( ! isset( $_POST[ 'postnord_meta_field_nonce' ] ) ) {
                return $post_id;
                }
                $nonce = $_REQUEST[ 'postnord_meta_field_nonce' ];

                if ( ! wp_verify_nonce( $nonce ) ) {
                return $post_id;
                }

                if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
                return $post_id;
                }

                if ( 'page' == $_POST[ 'post_type' ] ) {

                if ( ! current_user_can( 'edit_page', $post_id ) ) {
                return $post_id;
                }
                } else {

                if ( ! current_user_can( 'edit_post', $post_id ) ) {
                return $post_id;
                }
                }
                update_post_meta( $post_id, '_postnord_field_data', $_POST[ 'postnord_data_name' ] );
                }
                }





                share|improve this answer














                I found the solution.



                I forgot to save the values registered from the custom field before adding the information to the order email. No need to add an Ajax button under the field. Also, the plugin is no longer supported.



                    // save input from metabox
                add_action( 'save_post', 'bdev_save_postnord_data_to_order', 10, 1 );
                if ( ! function_exists( 'bdev_save_postnord_data_to_order' ) )
                {

                function bdev_save_postnord_data_to_order( $post_id ) {

                if ( ! isset( $_POST[ 'postnord_meta_field_nonce' ] ) ) {
                return $post_id;
                }
                $nonce = $_REQUEST[ 'postnord_meta_field_nonce' ];

                if ( ! wp_verify_nonce( $nonce ) ) {
                return $post_id;
                }

                if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
                return $post_id;
                }

                if ( 'page' == $_POST[ 'post_type' ] ) {

                if ( ! current_user_can( 'edit_page', $post_id ) ) {
                return $post_id;
                }
                } else {

                if ( ! current_user_can( 'edit_post', $post_id ) ) {
                return $post_id;
                }
                }
                update_post_meta( $post_id, '_postnord_field_data', $_POST[ 'postnord_data_name' ] );
                }
                }






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Nov 26 at 21:03

























                answered Nov 26 at 20:57









                Olivier Bigras-morin

                64




                64






























                    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.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • 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%2f53419872%2fwordpress-advanced-custom-field-include-tracking-number-in-order-page%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

                    Contact image not getting when fetch all contact list from iPhone by CNContact

                    count number of partitions of a set with n elements into k subsets

                    A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks