Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save FinalDestiny/b249b92c9c715cdb9ca3a8b50e802304 to your computer and use it in GitHub Desktop.
Save FinalDestiny/b249b92c9c715cdb9ca3a8b50e802304 to your computer and use it in GitHub Desktop.
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