Hi,
How can I disable details field in offers? If this must be done by coding can somebody tell me exact location where the code need to be placed?
Hi,
How can I disable details field in offers? If this must be done by coding can somebody tell me exact location where the code need to be placed?
Hi,
Please provide more details on which field you must hide, and we will try to help.
Hi, I mean when I am making an offer to a request there are price field and datails field. I want to disable details field
You can try this PHP snippet:
add_filter(
'hivepress/v1/forms/offer_make',
function( $form ) {
unset($form['fields']['details']);
return $form;
},
1000
);
I tried putting this code but nothing changed
Please try this one instead:
add_filter(
'hivepress/v1/forms/offer_make',
function( $form ) {
unset($form['fields']['text']);
return $form;
},
1000
);
The details field disappeared but I have this problem now.
Hi,
Please add this PHP snippet too Make the Details text field optional for offers #hivepress #requests · GitHub.