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;








1















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.










share|improve this question





















  • 1





    Beware - persistent cart does not work with compilation in EE 1.11 / CE 1.6

    – philwinkle
    May 15 '13 at 18:46

















1















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.










share|improve this question





















  • 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








1


1






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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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












  • 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










1 Answer
1






active

oldest

votes


















1














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.






share|improve this answer




















  • 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













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
);



);













draft saved

draft discarded


















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









1














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.






share|improve this answer




















  • 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














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.






share|improve this answer




















  • 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








1







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.






share|improve this answer













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.







share|improve this answer












share|improve this answer



share|improve this answer










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












  • 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

















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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

Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

Circuit construction for execution of conditional statements using least significant bitHow are two different registers being used as “control”?How exactly is the stated composite state of the two registers being produced using the $R_zz$ controlled rotations?Efficiently performing controlled rotations in HHLWould this quantum algorithm implementation work?How to prepare a superposed states of odd integers from $1$ to $sqrtN$?Why is this implementation of the order finding algorithm not working?Circuit construction for Hamiltonian simulationHow can I invert the least significant bit of a certain term of a superposed state?Implementing an oracleImplementing a controlled sum operation

Magento 2 “No Payment Methods” in Admin New OrderHow to integrate Paypal Express Checkout with the Magento APIMagento 1.5 - Sales > Order > edit order and shipping methods disappearAuto Invoice Check/Money Order Payment methodAdd more simple payment methods?Shipping methods not showingWhat should I do to change payment methods if changing the configuration has no effects?1.9 - No Payment Methods showing upMy Payment Methods not Showing for downloadable/virtual product when checkout?Magento2 API to access internal payment methodHow to call an existing payment methods in the registration form?