Skip to content

Instantly share code, notes, and snippets.

@ashokrane
Created March 30, 2019 12:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashokrane/400b66ef726577ec933233c8e49afb46 to your computer and use it in GitHub Desktop.
Save ashokrane/400b66ef726577ec933233c8e49afb46 to your computer and use it in GitHub Desktop.
Overwrite the minute increment from 5 minutes to anything else in Order Delivery Datea plugin
<?php
add_filter( 'orddd_time_slider_minute_step', 'ts_orddd_overwrite_minute_increment', 10, 1 );
function ts_orddd_overwrite_minute_increment( $step_minute ) {
$step_minute = 15;
return $step_minute;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment