Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created February 13, 2018 13:13
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 plugin-republic/f695db6265db8f79522b415bf01dc18a to your computer and use it in GitHub Desktop.
Save plugin-republic/f695db6265db8f79522b415bf01dc18a to your computer and use it in GitHub Desktop.
function my_bfwc_filter_check_in_placeholder( $label ) {
$label = 'Start rental';
return $label;
}
add_filter( 'bfwc_filter_check_in_placeholder', 'my_bfwc_filter_check_in_placeholder' );
function my_bfwc_filter_check_out_placeholder( $label ) {
$label = 'End rental';
return $label;
}
add_filter( 'bfwc_filter_check_out_placeholder', 'my_bfwc_filter_check_out_placeholder' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment