# How to Customize Recurring Disclaimer Text on Donation Forms
- Disable you WYSIWYG editor in Luminate.
- Edit a PageBuilder page
reus_donation__recurring_text. - Create a new version of the page.
- Insert the file the following code:
<div class="donation-form__recurring-disclaimer hidden" data-donation-form-id="XXXX"> <!-- Replace this with the new text that will appear below the submit button on the form when recurring option is selected --> </div> - Replace XXXX with an id of the form.
For multiple forms, list ids in a comma-separated list. Ex:For default, specify the keyword
data-donation-form-id="1622, 1684"defaultor omit thedata-donation-form-idattribute altogether. - Note that default disclaimer should not have a class
hiddenbut all others should have that class so those disclaimers don't show on page load and we don't see a content flash.
# Examples
# Default text with the data-donation-form-id attribute
<div class="donation-form__recurring-disclaimer" data-donation-form-id="default">
<p>
By providing my credit card information, I authorize Save the Children Federation, Inc. to charge my credit card monthly in the amount selected above. I understand that this authorization shall remain in effect until I notify Save the Children at least 30 days prior to the upcoming charge that I wish to end this agreement. I understand my credit card issuer may impose additional requirements and I should contact the credit card issuer for further information. A record of my contributions will appear on my credit card statement.
</p>
<div>```
### Default text without the `data-donation-form-id` attribute
```html
<div class="donation-form__recurring-disclaimer">
<p>
By providing my credit card information, I authorize Save the Children Federation, Inc. to charge my credit card monthly in the amount selected above. I understand that this authorization shall remain in effect until I notify Save the Children at least 30 days prior to the upcoming charge that I wish to end this agreement. I understand my credit card issuer may impose additional requirements and I should contact the credit card issuer for further information. A record of my contributions will appear on my credit card statement.
</p>
<div>
# Text for the donation form 1621
<div class="donation-form__recurring-disclaimer hidden" data-donation-form-id="1621">
<p>This is a custom text for the form 1621</p>
</div>
# Text for the donation forms 1622 & 1684
<div class="donation-form__recurring-disclaimer hidden" data-donation-form-id="1622, 1684">
<p>This is a custom text for the forms 1622 & 1684</p>
</div>