Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created April 26, 2022 17:19
Show Gist options
  • Save hivepress/761be484034d19e6ca8938dbc36f9ea6 to your computer and use it in GitHub Desktop.
Save hivepress/761be484034d19e6ca8938dbc36f9ea6 to your computer and use it in GitHub Desktop.
Change the opening hours field order in the listing edit form #hivepress #opening-hours
<?php
add_filter(
'hivepress/v1/forms/listing_update',
function( $form ) {
if ( isset( $form['fields']['opening_hours'] ) ) {
$form['fields']['opening_hours']['_order'] = 123;
}
return $form;
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment