Created
July 5, 2018 18:24
-
-
Save FinalDestiny/b249b92c9c715cdb9ca3a8b50e802304 to your computer and use it in GitHub Desktop.
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
| function contact_form_module_setup() { | |
| get_template_part( 'includes/builder/module/ContactForm' ); // require the new module file | |
| remove_shortcode( 'et_pb_contact_form' ); // remove the original module shortcode | |
| add_shortcode( 'et_pb_contact_form', array( new Cu_ET_Builder_Module_Contact_Form(), '_shortcode_callback' ) ); // add the new module shortcode | |
| } | |
| add_action( 'et_builder_ready', 'contact_form_module_setup' ); // hook with the et_builder_ready filter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment