You are viewing limited content. For full access, please sign in.

Question

Question

Can I change the title of the default comments box?

asked on June 11, 2020

In the example above when someone reviews the form they need a comment box "Reason for Denial or Comments": is there a way to change the label on the default comments box to say that so I a only need the default comments box?

Thanks

Sandy

0 0

Answer

SELECTED ANSWER
replied on June 12, 2020 Show version history

If you want to hide the comment box add the following CSS instead:

.comment-section {
  display: none;
}

 

0 0

Replies

replied on June 11, 2020 Show version history

Personally, I would use the field you created and hide the default comment box because you have a lot more flexibility and options with a field.

However, if you want to change the label for the default one, you can use the following code:

$(document).ready(function(){
  $('.comment-section p').text('Your Title');
});

 

3 0
replied on June 12, 2020

Thank-you!!

0 0
replied on June 12, 2020

Jason - how would I hide the default comment box?  

0 0
SELECTED ANSWER
replied on June 12, 2020 Show version history

If you want to hide the comment box add the following CSS instead:

.comment-section {
  display: none;
}

 

0 0
replied on June 12, 2020

Got it - thanks!

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.