By submitting this form, you agree to our privacy policy.Is there a way to do it once? That way we won't forget to add it in the future.
For future devs, I solved it with this hook: add_filter('frm_filter_final_form', function ($html) { return $html . ' <a href="#">privacy policy</a>.'; }, 10);
Good solution Luis! Nice job!
<p>I found the frm_filter_final_form hook. Looks like what I was looking for, as users won't accidentally forget to add it.</p><p>Do you have an opinion on this approach?</p>
Please login or Register to submit your answer