Home Forums WoodMart support forum Change woodmart cookie runtime/storage duration Reply To: Change woodmart cookie runtime/storage duration

#400864

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