Hi Team,
Happy New Year!
I was trying to find on locotranslate but was unable to locate where the below text is.
I would like to change the below ‘description’ text in the requests plugin.
Thanks
Hi Team,
Happy New Year!
I was trying to find on locotranslate but was unable to locate where the below text is.
I would like to change the below ‘description’ text in the requests plugin.
Thanks
Hi,
Please try this PHP snippet:
add_filter(
'hivepress/v1/forms/request_submit',
function( $form ) {
$form['fields']['description']['label'] = 'Custom text here';
return $form;
},
1000
);
Thanks for this Andrii, it works brilliantly!