Changeset 3194284
- Timestamp:
- 11/21/2024 03:31:55 PM (13 months ago)
- Location:
- siteground-email-marketing/tags/1.6.4/core/Integrations
- Files:
-
- 7 edited
-
Elementor/Elementor_Form.php (modified) (2 diffs)
-
Elementor/Forms/Elementor_Pro_Forms.php (modified) (2 diffs)
-
Gutenberg.php (modified) (2 diffs)
-
ThirdParty/CF7.php (modified) (2 diffs)
-
ThirdParty/GravityForms/GravityForms.php (modified) (2 diffs)
-
ThirdParty/NinjaForms/NinjaForms.php (modified) (2 diffs)
-
ThirdParty/WPForms/WPForms.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
siteground-email-marketing/tags/1.6.4/core/Integrations/Elementor/Elementor_Form.php
r3194240 r3194284 32 32 'enabled' => class_exists( '\Elementor\Plugin' ) ? 1 : 2, 33 33 'labels' => array(), 34 'checkbox_text' => __( 'Sign me up for the newsletter!', 'siteground-email-marketing' ),34 'checkbox_text' => 'Sign me up for the newsletter!', 35 35 'system' => 1, 36 36 'name' => $this->id, … … 38 38 ); 39 39 40 $settings['title'] = __( 'Elementor', 'siteground-email-marketing' );41 $settings['description'] = __( 'Add your lead generating forms by using the dedicated SiteGround Email Marketing block within Elementor.', 'siteground-email-marketing' );40 $settings['title'] = 'Elementor'; 41 $settings['description'] = 'Add your lead generating forms by using the dedicated SiteGround Email Marketing block within Elementor.'; 42 42 43 43 return $settings; -
siteground-email-marketing/tags/1.6.4/core/Integrations/Elementor/Forms/Elementor_Pro_Forms.php
r3194240 r3194284 33 33 'enabled' => class_exists( '\ElementorPro\Plugin' ) ? 1 : 2, 34 34 'labels' => array(), 35 'checkbox_text' => __( 'Sign me up for the newsletter!', 'siteground-email-marketing' ),35 'checkbox_text' => 'Sign me up for the newsletter!', 36 36 'system' => 1, 37 37 'name' => $this->id, … … 39 39 ); 40 40 41 $settings['title'] = __( 'Elementor Pro Forms', 'siteground-email-marketing' );42 $settings['description'] = __( 'Add an optional checkbox to any form created with Elementor Pro, enabling users to sign up for your mailing list. Enable this integration by adding action after submit "SG Email Marketing" in Elementor Pro forms settings.', 'siteground-email-marketing' );41 $settings['title'] = 'Elementor Pro Forms'; 42 $settings['description'] = 'Add an optional checkbox to any form created with Elementor Pro, enabling users to sign up for your mailing list. Enable this integration by adding action after submit "SG Email Marketing" in Elementor Pro forms settings.'; 43 43 44 44 return $settings; -
siteground-email-marketing/tags/1.6.4/core/Integrations/Gutenberg.php
r3194240 r3194284 53 53 'enabled' => version_compare( $GLOBALS['wp_version'], '5.0-beta', '>' ) ? 1 : 0, 54 54 'labels' => array(), 55 'checkbox_text' => __( 'Sign me up for the newsletter!', 'siteground-email-marketing' ),55 'checkbox_text' => 'Sign me up for the newsletter!', 56 56 'system' => 1, 57 57 'name' => $this->id, … … 59 59 ); 60 60 61 $settings['title'] = __( 'Gutenberg', 'siteground-email-marketing' );62 $settings['description'] = __( 'Add your lead generating forms by using the dedicated SiteGround Email Marketing block within Gutenberg.', 'siteground-email-marketing' );61 $settings['title'] = 'Gutenberg'; 62 $settings['description'] = 'Add your lead generating forms by using the dedicated SiteGround Email Marketing block within Gutenberg.'; 63 63 64 64 return $settings; -
siteground-email-marketing/tags/1.6.4/core/Integrations/ThirdParty/CF7.php
r3194240 r3194284 53 53 'enabled' => 1, 54 54 'labels' => array(), 55 'checkbox_text' => __( 'Sign me up for the newsletter!', 'siteground-email-marketing' ),55 'checkbox_text' => 'Sign me up for the newsletter!', 56 56 'system' => 1, 57 57 'name' => $this->id, … … 59 59 ); 60 60 61 $settings['title'] = __( 'Contact Form 7', 'siteground-email-marketing' );62 $settings['description'] = __( 'Add an optional checkbox to any form created with Contact Form 7, enabling users to sign up for your mailing list. Enable this feature from the SG Email Marketing tab in Contact Form 7 when editing an existing form.', 'siteground-email-marketing' );61 $settings['title'] = 'Contact Form 7'; 62 $settings['description'] = 'Add an optional checkbox to any form created with Contact Form 7, enabling users to sign up for your mailing list. Enable this feature from the SG Email Marketing tab in Contact Form 7 when editing an existing form.'; 63 63 $settings['enabled'] = ! class_exists( '\WPCF7' ) ? 2 : $settings['enabled']; 64 64 -
siteground-email-marketing/tags/1.6.4/core/Integrations/ThirdParty/GravityForms/GravityForms.php
r3194240 r3194284 35 35 'enabled' => class_exists( '\GFForms' ) ? 1 : 2, 36 36 'labels' => array(), 37 'checkbox_text' => __( 'Sign me up for the newsletter!', 'siteground-email-marketing' ),37 'checkbox_text' => 'Sign me up for the newsletter!', 38 38 'system' => 1, 39 39 'name' => $this->id, … … 41 41 ); 42 42 43 $settings['title'] = __( 'Gravity Forms', 'siteground-email-marketing' );44 $settings['description'] = __( 'Add an optional checkbox to any form created with Gravity Forms, enabling users to sign up for your mailing list. Enable this feature by adding the SG Email Marketing building block to any form created with Gravity Forms.', 'siteground-email-marketing' );43 $settings['title'] = 'Gravity Forms'; 44 $settings['description'] = 'Add an optional checkbox to any form created with Gravity Forms, enabling users to sign up for your mailing list. Enable this feature by adding the SG Email Marketing building block to any form created with Gravity Forms.'; 45 45 46 46 return $settings; -
siteground-email-marketing/tags/1.6.4/core/Integrations/ThirdParty/NinjaForms/NinjaForms.php
r3194240 r3194284 32 32 'enabled' => class_exists( '\NF_Abstracts_ActionNewsletter' ) ? 1 : 2, 33 33 'labels' => array(), 34 'checkbox_text' => __( 'Sign me up for the newsletter!', 'siteground-email-marketing' ),34 'checkbox_text' => 'Sign me up for the newsletter!', 35 35 'system' => 1, 36 36 'name' => $this->id, … … 38 38 ); 39 39 40 $settings['title'] = __( 'Ninja Forms', 'siteground-email-marketing' );41 $settings['description'] = __( 'Add an optional checkbox to any form created with Ninja Forms, enabling users to sign up for your mailing list. Enable this integration by adding the action "SG Email Marketing" in Ninja Form settings.', 'siteground-email-marketing' );40 $settings['title'] = 'Ninja Forms'; 41 $settings['description'] = 'Add an optional checkbox to any form created with Ninja Forms, enabling users to sign up for your mailing list. Enable this integration by adding the action "SG Email Marketing" in Ninja Form settings.'; 42 42 43 43 return $settings; -
siteground-email-marketing/tags/1.6.4/core/Integrations/ThirdParty/WPForms/WPForms.php
r3194240 r3194284 45 45 'enabled' => class_exists( '\WPForms_Field' ) ? 1 : 2, 46 46 'labels' => array(), 47 'checkbox_text' => __( 'Sign me up for the newsletter!', 'siteground-email-marketing' ),47 'checkbox_text' => 'Sign me up for the newsletter!', 48 48 'system' => 1, 49 49 'name' => $this->id, … … 51 51 ); 52 52 53 $settings['title'] = __( 'WPForms', 'siteground-email-marketing' );54 $settings['description'] = __( 'Add an optional checkbox to any form created with WPForms, enabling users to sign up for your mailing list. Enable this feature by adding the SG Email Marketing building block to any WPForms form.', 'siteground-email-marketing' );53 $settings['title'] = 'WPForms'; 54 $settings['description'] = 'Add an optional checkbox to any form created with WPForms, enabling users to sign up for your mailing list. Enable this feature by adding the SG Email Marketing building block to any WPForms form.'; 55 55 56 56 return $settings;
Note: See TracChangeset
for help on using the changeset viewer.