The “alternative disclaimer text” field in the settings page should override the default values there. Should be available to you as it looks like you’re on the latest version of the plugin.
Thank you for your response. I found the “Alternative Disclaimer Text” field.
However, it’s not working as I would expect. If you go to WordPress Dashboard, Contact Form, Settings, General tab, scroll down to Global Form CSS Settings, Alternative Disclaimer Text, there is a text box where you can use text or HTML to override the default.
I apply this HTML, but when I save it, some of the HTML tags are removed.
PASTED THIS HTML:
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<p>
<b>
<style=”color:#272c3f”;font-size:14px;>By subscribing, you agree to receive our ministry materials and agree with our Privacy Policy. You may unsubscribe at any time.</b>
</p>
</body>
</html>
AFTER SAVING CHANGES:
<title>Title of the document</title>
<p>
<b>
By subscribing, you agree to receive our ministry materials and agree with our Privacy Policy. You may unsubscribe at any time.</b>
</p>
As you can see, the color font size and color I want to use have been removed after saving the form. What can I do to get the results I’m looking for?
Thank you so much for your help.
Best Regards,
Julio
FYI – I disabled the Disclaimer Text by adding this CSS
‘.ctct-disclosure{
display: none;
}’
and added my own text/HTML via WordPress and the Enfold Theme I’m using.
Give this version a go. You don’t need the full <html> to </html> part as this is going to be put inside a <small> tag anyway.
<div style="color:#272c3f;font-size:14px;font-weight:bold;">By subscribing, you agree to receive our ministry materials and agree with our <a href="https://kingdomlearners.com/privacy-policy">Privacy Policy</a>. You may unsubscribe at any time.</div>
I tested this version myself, and it’s saving and retaining the provided html. I also added font-weight:bold for you so that you don’t need to worry about the <b> tag.