Multichoice field - edit allow user value text

When using a multichoice field and selecting allow user value, the standard text for the "other" option is "Specify your own value". I'd like to be able to customise this text - is this possible?

Thanks :smile:

Dear @Chris,
Are we talking about Multichoice field in Checkboxes mode?

While this message is from SharePoint, you can try the following JavaScript to modify the label:

fd.spRendered(function(){
  $('.fd-fill-in-choice label').text('Your value goes here:');
});
1 Like

Hello,

How do i change the text 'Specify your own value:' in a checkbox control in the latest version?

Thank you

Hi @jamesmitchell,

If you're using Forms for SharePoint, I don't think there's a way to do this from the UI.
The method proposed by @Nikita_Kurguzov is supposed to work fine though. Have you had any luck with it?