Skip to content

Instantly share code, notes, and snippets.

@tharlab
Forked from hivepress/functions.php
Created February 22, 2024 02:50
Show Gist options
  • Save tharlab/1748aee08149877d1e6d727fb7676771 to your computer and use it in GitHub Desktop.
Save tharlab/1748aee08149877d1e6d727fb7676771 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