Last active
February 27, 2017 09:58
-
-
Save evrpress/0233566f5ec2a14f9db743c8bb271870 to your computer and use it in GitHub Desktop.
Change the HTML of MyMail Forms
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'mailster_form', 'change_mailster_form_html', 10 , 3 ); | |
function change_mailster_form_html( $html, $form_id, $form ) { | |
//do some replacements | |
return $html; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment