Skip to content

Instantly share code, notes, and snippets.

@techjewel
Created March 1, 2021 19:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techjewel/f7a9ec66648b3ee242cb26cda816ebc6 to your computer and use it in GitHub Desktop.
Save techjewel/f7a9ec66648b3ee242cb26cda816ebc6 to your computer and use it in GitHub Desktop.
Fluent Forms Summary Email Text Change
<?php
// changing summary email body text
add_filter('fluentform_email_summary_body_text', function ($text) {
return 'Your own Email Body Text';
});
// changing email footer text
add_filter('fluentform_email_summary_footer_text', function ($text) {
return 'Powered by your agency';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment