Home › Forums › WoodMart support forum › Change woodmart cookie runtime/storage duration › Reply To: Change woodmart cookie runtime/storage duration
September 1, 2022 at 1:18 pm
#400864
Elise Noromit
Member
Hello,
Unfortunately, there is no option. You can add this custom code to the functions.php of the child theme:
if ( ! function_exists( 'woodmart_update_session_expiration' ) ) {
function woodmart_update_session_expiration() {
return DAY_IN_SECONDS;
}
add_filter( 'woodmart_session_expiration', 'woodmart_update_session_expiration' );
}
If you have any questions please feel free to contact us.
Best Regards