Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created May 29, 2022 16:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hivepress/8588dd33a0cf990a8fcf83565124b763 to your computer and use it in GitHub Desktop.
Save hivepress/8588dd33a0cf990a8fcf83565124b763 to your computer and use it in GitHub Desktop.
Add description to the note field in the order delivery form #hivepress #marketplace
<?php
add_filter(
'hivepress/v1/forms/order_deliver',
function( $form ) {
$form['fields']['note']['description'] = 'custom text here';
return $form;
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment