Make an offer text

I just noticed that vendors are generally happy accepting a customer’s budget, which in return makes the customer think they aren’t getting the best price. I would like to add text that says " Show that you’re qualified for the job and bid competitive in increase your chances of being booked"

Please clarify where do you want to add this text? Just in this form or as the description for the Price field?

In the description of the Details field

Please try this PHP snippet

add_filter(
	'hivepress/v1/forms/offer_make',
	function ($form){
		$form['fields']['text']['description'] = 'Your text here';
		
		return $form;
	},
	1000
);
1 Like

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