Persistent cart sessionCart dropping all items / cart session clearsPersistent shopping cart works even if disabledCleaning up when session expiresPersistent Shopping Cart & session.gc_maxlifetimePersistent cart = off, adding 1 product and login results in 12 products in cartDoes Persistent Shopping Cart work for guest (unlogged) visitors?Magento 2 checkout sessionMagento throws a report error when customer session expires and shopping cart persistent is activeMagento2- Session Empty After Being SetMagento 2.2.x: Persistent Checkout can't be disabled
Radix2 Fast Fourier Transform implemented in C++
Unbiased estimator of exponential of measure of a set?
Is recepted a word?
Show two plots together: a two dimensional curve tangent to the maxima of a three dimensional plot
Why do aircraft leave the cruising altitude long before landing just to circle?
Unsolved Problems due to Lack of Computational Power
iPad or iPhone doesn't charge until unlocked?
Does git delete empty folders?
Same SObject Upsert Parent Lookup record using an external Id
Lazy brainfuck programmer
Just one file echoed from an array of files
Do predators tend to have vertical slit pupils versus horizontal for prey animals?
What can I do to keep a threaded bolt from falling out of it’s slot
Why should I pay for an SSL certificate?
Land Registry Clause
What happened after the end of the Truman Show?
Can 'in-' mean both 'in' and 'no'?
Could sidesticks be linked?
Check disk usage of files returned with spaces
Wristwatches in the cockpit
Are there any OR challenges that are similar to kaggle's competitions?
How to use source_location in a variadic template function?
Metal that glows when near pieces of itself
How can I train a replacement without letting my bosses and the replacement knowing?
Persistent cart session
Cart dropping all items / cart session clearsPersistent shopping cart works even if disabledCleaning up when session expiresPersistent Shopping Cart & session.gc_maxlifetimePersistent cart = off, adding 1 product and login results in 12 products in cartDoes Persistent Shopping Cart work for guest (unlogged) visitors?Magento 2 checkout sessionMagento throws a report error when customer session expires and shopping cart persistent is activeMagento2- Session Empty After Being SetMagento 2.2.x: Persistent Checkout can't be disabled
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Is "persistent cart session" in fact checkout/session or is it a separate session? If it is separate, can I use it from my modules? I need some data to persist together with the shopping cart content.
session
add a comment |
Is "persistent cart session" in fact checkout/session or is it a separate session? If it is separate, can I use it from my modules? I need some data to persist together with the shopping cart content.
session
1
Beware - persistent cart does not work with compilation in EE 1.11 / CE 1.6
– philwinkle
May 15 '13 at 18:46
add a comment |
Is "persistent cart session" in fact checkout/session or is it a separate session? If it is separate, can I use it from my modules? I need some data to persist together with the shopping cart content.
session
Is "persistent cart session" in fact checkout/session or is it a separate session? If it is separate, can I use it from my modules? I need some data to persist together with the shopping cart content.
session
session
edited Aug 7 at 5:31
Aasim Goriya
3,4292 gold badges13 silver badges45 bronze badges
3,4292 gold badges13 silver badges45 bronze badges
asked May 15 '13 at 18:28
climeclime
1871 gold badge3 silver badges12 bronze badges
1871 gold badge3 silver badges12 bronze badges
1
Beware - persistent cart does not work with compilation in EE 1.11 / CE 1.6
– philwinkle
May 15 '13 at 18:46
add a comment |
1
Beware - persistent cart does not work with compilation in EE 1.11 / CE 1.6
– philwinkle
May 15 '13 at 18:46
1
1
Beware - persistent cart does not work with compilation in EE 1.11 / CE 1.6
– philwinkle
May 15 '13 at 18:46
Beware - persistent cart does not work with compilation in EE 1.11 / CE 1.6
– philwinkle
May 15 '13 at 18:46
add a comment |
1 Answer
1
active
oldest
votes
If you need data to persist with the shopping cart session, extend the shopping cart. No need to piggyback on the customer persistence.
If you need data, you can extend the following tables - sales_flat_quote
, sales_flat_quote_item
to inject your domain-specific logic into the sales. The persistence module should resurrect the shopping cart session as per usual - only associating it to customers that have logged in / performed actions on different devices.
Persistance is also limited in CE. Wishlists and more aren't available in CE, only in EE. In CE 1.6 / EE 1.11 it was unable to work with compilation. I'm not sure if this was addressed in later releases.
1
I did extend sales_flat_quote and it works well. Thank you.
– clime
May 16 '13 at 16:09
Glad to hear it - awesome!
– philwinkle
May 16 '13 at 16:10
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
);
);
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%2fmagento.stackexchange.com%2fquestions%2f3763%2fpersistent-cart-session%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
If you need data to persist with the shopping cart session, extend the shopping cart. No need to piggyback on the customer persistence.
If you need data, you can extend the following tables - sales_flat_quote
, sales_flat_quote_item
to inject your domain-specific logic into the sales. The persistence module should resurrect the shopping cart session as per usual - only associating it to customers that have logged in / performed actions on different devices.
Persistance is also limited in CE. Wishlists and more aren't available in CE, only in EE. In CE 1.6 / EE 1.11 it was unable to work with compilation. I'm not sure if this was addressed in later releases.
1
I did extend sales_flat_quote and it works well. Thank you.
– clime
May 16 '13 at 16:09
Glad to hear it - awesome!
– philwinkle
May 16 '13 at 16:10
add a comment |
If you need data to persist with the shopping cart session, extend the shopping cart. No need to piggyback on the customer persistence.
If you need data, you can extend the following tables - sales_flat_quote
, sales_flat_quote_item
to inject your domain-specific logic into the sales. The persistence module should resurrect the shopping cart session as per usual - only associating it to customers that have logged in / performed actions on different devices.
Persistance is also limited in CE. Wishlists and more aren't available in CE, only in EE. In CE 1.6 / EE 1.11 it was unable to work with compilation. I'm not sure if this was addressed in later releases.
1
I did extend sales_flat_quote and it works well. Thank you.
– clime
May 16 '13 at 16:09
Glad to hear it - awesome!
– philwinkle
May 16 '13 at 16:10
add a comment |
If you need data to persist with the shopping cart session, extend the shopping cart. No need to piggyback on the customer persistence.
If you need data, you can extend the following tables - sales_flat_quote
, sales_flat_quote_item
to inject your domain-specific logic into the sales. The persistence module should resurrect the shopping cart session as per usual - only associating it to customers that have logged in / performed actions on different devices.
Persistance is also limited in CE. Wishlists and more aren't available in CE, only in EE. In CE 1.6 / EE 1.11 it was unable to work with compilation. I'm not sure if this was addressed in later releases.
If you need data to persist with the shopping cart session, extend the shopping cart. No need to piggyback on the customer persistence.
If you need data, you can extend the following tables - sales_flat_quote
, sales_flat_quote_item
to inject your domain-specific logic into the sales. The persistence module should resurrect the shopping cart session as per usual - only associating it to customers that have logged in / performed actions on different devices.
Persistance is also limited in CE. Wishlists and more aren't available in CE, only in EE. In CE 1.6 / EE 1.11 it was unable to work with compilation. I'm not sure if this was addressed in later releases.
answered May 15 '13 at 18:51
philwinklephilwinkle
33.6k5 gold badges83 silver badges145 bronze badges
33.6k5 gold badges83 silver badges145 bronze badges
1
I did extend sales_flat_quote and it works well. Thank you.
– clime
May 16 '13 at 16:09
Glad to hear it - awesome!
– philwinkle
May 16 '13 at 16:10
add a comment |
1
I did extend sales_flat_quote and it works well. Thank you.
– clime
May 16 '13 at 16:09
Glad to hear it - awesome!
– philwinkle
May 16 '13 at 16:10
1
1
I did extend sales_flat_quote and it works well. Thank you.
– clime
May 16 '13 at 16:09
I did extend sales_flat_quote and it works well. Thank you.
– clime
May 16 '13 at 16:09
Glad to hear it - awesome!
– philwinkle
May 16 '13 at 16:10
Glad to hear it - awesome!
– philwinkle
May 16 '13 at 16:10
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- 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%2fmagento.stackexchange.com%2fquestions%2f3763%2fpersistent-cart-session%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
1
Beware - persistent cart does not work with compilation in EE 1.11 / CE 1.6
– philwinkle
May 15 '13 at 18:46