Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Created March 25, 2018 16:50
Show Gist options
  • Save leewillis77/799e274e3d3292ac5d339e40134c21e1 to your computer and use it in GitHub Desktop.
Save leewillis77/799e274e3d3292ac5d339e40134c21e1 to your computer and use it in GitHub Desktop.
Add additional duration to Cart Recovery for WordPress Pro
<?php
function lw_crfwp_timing_options($options) {
$options['604800'] = __( 'One week', 'crwfp' );
return $options;
}
add_filter( 'crfwp_timing_options', 'lw_crfwp_timing_options' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment