Advertisement
eventsmanager

Change default bookings admin table defaults

Nov 9th, 2017
895
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Changes the default booking status being searched for on booking admin tables, and can be extended to change other default features.
  4.  * For installation instructions, see here - http://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/
  5.  * @param EM_Bookings_Table $EM_Bookings_Table
  6.  */
  7. function my_custom_booking_table_status_default( $EM_Bookings_Table ){
  8.     if( !isset($_REQUEST['status']) ) $EM_Bookings_Table->status = 'confirmed';
  9. }
  10. add_action('em_bookings_table_header', 'my_custom_booking_table_status_default', 10, 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement