Hi, I’d like to hide the ‘Details’ field from the request payout form since I’m going to payout throw SEPA, and on the ?complete profile? form I already ask all the information needed.
Hi,
Please use this PHP snippet (How to add custom code snippets - HivePress Help Center):
add_filter(
'hivepress/v1/forms/payout_request',
function( $form ) {
unset( $form['fields']['details']);
return $form;
},
1000
);
I hope this is helpful to you.
It did, thank you ![]()
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
