Skip to content

Commit

Permalink
Merge pull request #15 from omnisend/api-key
Browse files Browse the repository at this point in the history
Use omnisend api key instead of omnisend for woo
  • Loading branch information
Gabiermi authored Nov 26, 2024
2 parents 6c7b164 + 9fa2fef commit 584014c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Omnisend for Formidable Forms Add-On
* Description: A Formidable forms add-on to sync contacts with Omnisend. In collaboration with Omnisnnd for WooCommerce plugin it enables better customer tracking
* Version: 1.1.2
* Version: 1.1.3
* Author: Omnisend
* Author URI: https://www.omnisend.com
* Developer: Omnisend
Expand All @@ -23,7 +23,7 @@
}

define( 'OMNISEND_FORMIDABLE_ADDON_NAME', 'Omnisend for Formidable Forms Add-On' );
define( 'OMNISEND_FORMIDABLE_ADDON_VERSION', '1.1.2' );
define( 'OMNISEND_FORMIDABLE_ADDON_VERSION', '1.1.3' );

spl_autoload_register( array( 'Omnisend_FormidableFormsAddOn_Bootstrap', 'autoloader' ) );
add_action( 'plugins_loaded', array( 'Omnisend_FormidableFormsAddOn_Bootstrap', 'check_plugin_requirements' ) );
Expand Down Expand Up @@ -87,7 +87,7 @@ public static function check_plugin_requirements() {
return;
}

$api_key = get_option( 'omnisend_api_key', null );
$api_key = get_option( 'omni_send_core_api_key', null );

if ( is_null( $api_key ) ) {
deactivate_plugins( $formidable_addon_plugin );
Expand Down
6 changes: 4 additions & 2 deletions omnisend-for-formidable-forms-add-on/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: formidable forms, form, email marketing, web tracking, subscriber collecti
Requires at least: 4.7.0
Tested up to: 6.4
Requires PHP: 7.1
Stable tag: 1.1.2
Stable tag: 1.1.3
License: GPLv3 or later
URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -59,6 +59,9 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro
7. Convert more visitors with highly-targeted landing pages

== Changelog ==
= 1.1.3 =
* Fix connection without WooCommerce issue

= 1.1.2 =
* Add Patchstack security vulnerability disclosure program link to faq

Expand All @@ -68,7 +71,6 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro
= 1.1.0 =
* Update to use Omnisend plugin


= 1.0.4 =
* Update plugin icon

Expand Down

0 comments on commit 584014c

Please sign in to comment.