Created
March 25, 2018 16:50
-
-
Save leewillis77/799e274e3d3292ac5d339e40134c21e1 to your computer and use it in GitHub Desktop.
Add additional duration to Cart Recovery for WordPress Pro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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