Created
March 6, 2024 12:21
-
-
Save LaxusCroco/62bc13175ef4ce25baaa672dce2d0ffc to your computer and use it in GitHub Desktop.
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 | |
add_filter( 'jet-booking/ical/import/node', function( $import_node, $node, $calendar_object ) { | |
$import_node['check_out_date'] = $import_node['check_out_date'] + 86400; | |
return $import_node; | |
}, 0, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment