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;
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
add a comment
|
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
add a comment
|
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
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
php wordpress cookies woocommerce orders
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
add a comment
|
add a comment
|
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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