Noptin_Integrations::load_elementor_forms_integration()
Loads Elementor forms integration
Source Source
File: includes/integrations/class-noptin-integrations.php
public function load_elementor_forms_integration() { // Ensure the elementor pro class exists. if ( ! class_exists( '\ElementorPro\Plugin' ) ) { return; } // Instantiate the action class $action = new Noptin_Elementor_Forms_Integration(); // Register the action with form widget \ElementorPro\Plugin::instance()->modules_manager->get_modules( 'forms' )->add_form_action( $action->get_name(), $action ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.3.2 | Introduced. |