Maintain cart for a week in magento 2?Cart dropping all items / cart session clearsChange Checkout template based on products in cartAdmin logout warningfront end customer session expire issueUpdate configurable product in cartRemove session Id from URLHow to make guest cart expire after inactivity instead of time limit?Whats the best way in Magento 2 to save value for the checkout processHow to get SID programmatically : Magento 1.9Magento 2 - Set Cart Summary text for Paypal Payment
Did Darth Vader wear the same suit for 20+ years?
Is having a hidden directory under /etc safe?
Do adult Russians normally hand-write Cyrillic as cursive or as block letters?
Unconventional Opposites
Is American Express widely accepted in France?
GFCI Outlet in Bathroom, Lights not working
Accidentally cashed a check twice
Rotated Position of Integers
Chopin: marche funèbre bar 15 impossible place
Please help me identify this plane
Is the capacitor drawn or wired wrongly?
Is it OK to bring delicacies from hometown as tokens of gratitude for an out-of-town interview?
Is there a practical difference between different types of Berachos?
Why use water tanks from a retired Space Shuttle?
Setting extra bits in a bool makes it true and false at the same time
When leasing/renting out an owned property, is there a standard ratio between monthly rent and the mortgage?
What does War Machine's "Canopy! Canopy!" line mean in "Avengers: Endgame"?
Do marked cards or loaded dice have any mechanical benefit?
Show sparse matrices like chessboards
Movie where a boy is transported into the future by an alien spaceship
Could a guilty Boris Johnson be used to cancel Brexit?
PhD student with mental health issues and bad performance
How is it possible for this NPC to be alive during the Curse of Strahd adventure?
Old black and white movie: glowing black rocks slowly turn you into stone upon touch
Maintain cart for a week in magento 2?
Cart dropping all items / cart session clearsChange Checkout template based on products in cartAdmin logout warningfront end customer session expire issueUpdate configurable product in cartRemove session Id from URLHow to make guest cart expire after inactivity instead of time limit?Whats the best way in Magento 2 to save value for the checkout processHow to get SID programmatically : Magento 1.9Magento 2 - Set Cart Summary text for Paypal Payment
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am building a Magento 2 store. the Cart is saved for one hour only, it get deleted after one hour of inactivity. Is there any setting on Magento that allow a longer(may be a week or so) cart session time. Or some coding changes are need to archive this ?
magento-2.1 cart session
add a comment |
I am building a Magento 2 store. the Cart is saved for one hour only, it get deleted after one hour of inactivity. Is there any setting on Magento that allow a longer(may be a week or so) cart session time. Or some coding changes are need to archive this ?
magento-2.1 cart session
add a comment |
I am building a Magento 2 store. the Cart is saved for one hour only, it get deleted after one hour of inactivity. Is there any setting on Magento that allow a longer(may be a week or so) cart session time. Or some coding changes are need to archive this ?
magento-2.1 cart session
I am building a Magento 2 store. the Cart is saved for one hour only, it get deleted after one hour of inactivity. Is there any setting on Magento that allow a longer(may be a week or so) cart session time. Or some coding changes are need to archive this ?
magento-2.1 cart session
magento-2.1 cart session
edited Aug 14 '17 at 11:28
Teja Bhagavan Kollepara
2,92742051
2,92742051
asked Jul 13 '17 at 5:27
Arun KarnawatArun Karnawat
1,42321947
1,42321947
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
You can set it from admin configuration.
Admin >> Store >> Configuration >> Customers >> Persistent Shopping
Cart >> General Options >> Enable Persistence.
set it as Yes.
Quote Lifetime set to 30 Days but it still get empty in 1hour?
– Arun Karnawat
Jul 13 '17 at 5:37
Check my updated answer.
– Suresh Chikani
Jul 13 '17 at 5:40
add a comment |
To update Quote Lifetime, Go to:
Admin > Store > Configuration > Sales > Checkout > Shopping Cart > Quote Lifetime
To Enable Persistent Cart (A persistent shopping cart keeps track of unpurchased items left in the cart, and saves the information for the customer’s next visit.), Go to:
Admin > Store > Configuration > Customers > Persistent Shopping Cart > General Options > Enable Persistence
Set Yes
This 2 setting Enable us to manage cart better and reduce cart abandonment rate.
add a comment |
Everything enabled but still facing cart expiry issue for guest checkout, any idea?
My magento version is 2.1.15
add a comment |
This change needs to be made via php.ini as per the Magento documents there is currently no setting that will extend the session life of the cart.
Within php.ini you need to modify session.gc_maxlifetime
restart php and restart apache
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%2f183445%2fmaintain-cart-for-a-week-in-magento-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can set it from admin configuration.
Admin >> Store >> Configuration >> Customers >> Persistent Shopping
Cart >> General Options >> Enable Persistence.
set it as Yes.
Quote Lifetime set to 30 Days but it still get empty in 1hour?
– Arun Karnawat
Jul 13 '17 at 5:37
Check my updated answer.
– Suresh Chikani
Jul 13 '17 at 5:40
add a comment |
You can set it from admin configuration.
Admin >> Store >> Configuration >> Customers >> Persistent Shopping
Cart >> General Options >> Enable Persistence.
set it as Yes.
Quote Lifetime set to 30 Days but it still get empty in 1hour?
– Arun Karnawat
Jul 13 '17 at 5:37
Check my updated answer.
– Suresh Chikani
Jul 13 '17 at 5:40
add a comment |
You can set it from admin configuration.
Admin >> Store >> Configuration >> Customers >> Persistent Shopping
Cart >> General Options >> Enable Persistence.
set it as Yes.
You can set it from admin configuration.
Admin >> Store >> Configuration >> Customers >> Persistent Shopping
Cart >> General Options >> Enable Persistence.
set it as Yes.
edited Jul 13 '17 at 5:52
answered Jul 13 '17 at 5:33
Suresh ChikaniSuresh Chikani
10.5k53673
10.5k53673
Quote Lifetime set to 30 Days but it still get empty in 1hour?
– Arun Karnawat
Jul 13 '17 at 5:37
Check my updated answer.
– Suresh Chikani
Jul 13 '17 at 5:40
add a comment |
Quote Lifetime set to 30 Days but it still get empty in 1hour?
– Arun Karnawat
Jul 13 '17 at 5:37
Check my updated answer.
– Suresh Chikani
Jul 13 '17 at 5:40
Quote Lifetime set to 30 Days but it still get empty in 1hour?
– Arun Karnawat
Jul 13 '17 at 5:37
Quote Lifetime set to 30 Days but it still get empty in 1hour?
– Arun Karnawat
Jul 13 '17 at 5:37
Check my updated answer.
– Suresh Chikani
Jul 13 '17 at 5:40
Check my updated answer.
– Suresh Chikani
Jul 13 '17 at 5:40
add a comment |
To update Quote Lifetime, Go to:
Admin > Store > Configuration > Sales > Checkout > Shopping Cart > Quote Lifetime
To Enable Persistent Cart (A persistent shopping cart keeps track of unpurchased items left in the cart, and saves the information for the customer’s next visit.), Go to:
Admin > Store > Configuration > Customers > Persistent Shopping Cart > General Options > Enable Persistence
Set Yes
This 2 setting Enable us to manage cart better and reduce cart abandonment rate.
add a comment |
To update Quote Lifetime, Go to:
Admin > Store > Configuration > Sales > Checkout > Shopping Cart > Quote Lifetime
To Enable Persistent Cart (A persistent shopping cart keeps track of unpurchased items left in the cart, and saves the information for the customer’s next visit.), Go to:
Admin > Store > Configuration > Customers > Persistent Shopping Cart > General Options > Enable Persistence
Set Yes
This 2 setting Enable us to manage cart better and reduce cart abandonment rate.
add a comment |
To update Quote Lifetime, Go to:
Admin > Store > Configuration > Sales > Checkout > Shopping Cart > Quote Lifetime
To Enable Persistent Cart (A persistent shopping cart keeps track of unpurchased items left in the cart, and saves the information for the customer’s next visit.), Go to:
Admin > Store > Configuration > Customers > Persistent Shopping Cart > General Options > Enable Persistence
Set Yes
This 2 setting Enable us to manage cart better and reduce cart abandonment rate.
To update Quote Lifetime, Go to:
Admin > Store > Configuration > Sales > Checkout > Shopping Cart > Quote Lifetime
To Enable Persistent Cart (A persistent shopping cart keeps track of unpurchased items left in the cart, and saves the information for the customer’s next visit.), Go to:
Admin > Store > Configuration > Customers > Persistent Shopping Cart > General Options > Enable Persistence
Set Yes
This 2 setting Enable us to manage cart better and reduce cart abandonment rate.
answered Jul 13 '17 at 7:24
Arun KarnawatArun Karnawat
1,42321947
1,42321947
add a comment |
add a comment |
Everything enabled but still facing cart expiry issue for guest checkout, any idea?
My magento version is 2.1.15
add a comment |
Everything enabled but still facing cart expiry issue for guest checkout, any idea?
My magento version is 2.1.15
add a comment |
Everything enabled but still facing cart expiry issue for guest checkout, any idea?
My magento version is 2.1.15
Everything enabled but still facing cart expiry issue for guest checkout, any idea?
My magento version is 2.1.15
answered Jan 25 at 12:17
Jeeva ChezhiyanJeeva Chezhiyan
823826
823826
add a comment |
add a comment |
This change needs to be made via php.ini as per the Magento documents there is currently no setting that will extend the session life of the cart.
Within php.ini you need to modify session.gc_maxlifetime
restart php and restart apache
add a comment |
This change needs to be made via php.ini as per the Magento documents there is currently no setting that will extend the session life of the cart.
Within php.ini you need to modify session.gc_maxlifetime
restart php and restart apache
add a comment |
This change needs to be made via php.ini as per the Magento documents there is currently no setting that will extend the session life of the cart.
Within php.ini you need to modify session.gc_maxlifetime
restart php and restart apache
This change needs to be made via php.ini as per the Magento documents there is currently no setting that will extend the session life of the cart.
Within php.ini you need to modify session.gc_maxlifetime
restart php and restart apache
answered May 25 at 13:03
Paul 'Whippet' McGuanePaul 'Whippet' McGuane
16410
16410
add a comment |
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%2f183445%2fmaintain-cart-for-a-week-in-magento-2%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