Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Created September 3, 2019 15:00
Show Gist options
  • Save leewillis77/d6087e8bfe821a24d6a274695407cd06 to your computer and use it in GitHub Desktop.
Save leewillis77/d6087e8bfe821a24d6a274695407cd06 to your computer and use it in GitHub Desktop.
Add alternate send times to recovery campaigns in Cart Recovery Pro for WordPress
<?php
function lw_crfwp_timing_options( $options ) {
// 259200 is the number of seconds in 72 hours.
$options[259200] = '72 Hours';
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