How can I edit the "Request payout" form, I want to add other fields, is it possible?

On RENTALHIVE

THANK YOU :slight_smile:

Hi,
Sorry, unfortunately now it is impossible to customize, but you can add a hint, about what customers must write in Details, please try this PHP snippet:

<?php
add_filter(
	'hivepress/v1/forms/payout_request',
	function( $form ) {
		$form['fields']['details']['description'] = 'custom text here';

		return $form;
	},
  1000
);
1 Like

Thank you!!! And is it possible to introduce a link there? I mean, I want to add instead of a description itself, a linkto a page in which I explain it. Thank you, u really helped me!

Hi,
Sorry, there’s no simple code snippet for this, we’ll consider adding this feature.

P.S. If you purchased any of the themes or extensions please set the license key in the forum profile, this will enable the Premium Support badge - this ensures a 24-hour turnaround time.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.