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

Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

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

Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form