How can someone change the Data entry help text

Is it possible to change/Edit the text I highlighted in the screenshot? It appears when the help icon next to the title “Data Entry” is clicked.

Hi @David

It might be possible to create a react app that does that, or to modify the Data Entry react app and upload a custom version of it (not recommended.)

Another option, if this is a general note for all of data entry app (and not a custom one for each dataset) is to use CSS.

One option is to hide the question mark and the popup bar all together, and another is to add your custom text as well as hide the text that’s in the bar:

I hope you find this useful, here’s the code:

#hideRightBar:after {
    content: "Hi there, these are instrutions.";
}

#rightBar div:nth-child(n) {
    display: none;
}

You might also find the notes here helpful: UI Customization (style.css) not taking effect?

Thanks!

1 Like

@Gassim, Thank you so much for your quick response! this is really helpful.

1 Like

You’re welcome @David! Please do mark the post as solution if it solved the issue.

Thanks!