Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created April 27, 2022 09:53
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hivepress/d511e90bb7f45b9cb227ff5ee405cdff to your computer and use it in GitHub Desktop.
Save hivepress/d511e90bb7f45b9cb227ff5ee405cdff to your computer and use it in GitHub Desktop.
Add description to the details field in the payout request form #hivepress #marketplace
<?php
add_filter(
'hivepress/v1/forms/payout_request',
function( $form ) {
$form['fields']['details']['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