diff --git a/README.md b/README.md index ea14885..1c2431e 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,25 @@ -# ConvertKit for WPForms +# Kit for WPForms -Welcome to the ConvertKit WPForms Addon for WordPress repository on GitHub. Here you can view the plugin source code, review open issues, and see releases of the plugin. +Welcome to the Kit WPForms Addon for WordPress repository on GitHub. Here you can view the plugin source code, review open issues, and see releases of the plugin. **If you're not a developer, please download the plugin from [WordPress.org](https://wordpress.org/plugins/integrate-convertkit-wpforms). Downloading and installing directly from GitHub will not work.** ## Support -If you are having issues setting up this plugin on your WordPress site, or have issues with your ConvertKit forms please do the following: +If you are having issues setting up this plugin on your WordPress site, or have issues with your Kit forms please do the following: * Check the [Knowledge Base](https://help.kit.com/) for an answer to your question. -* If you're still having trouble contact [ConvertKit Support](https://kit.com/support/). +* If you're still having trouble contact [Kit Support](https://kit.com/support/). ## Developers -For ConvertKit Developers, there are guides in the main ConvertKit Plugin repository covering: +For Kit Developers, there are guides in the main Kit Plugin repository covering: - [Setup](https://github.com/ConvertKit/convertkit-wordpress/blob/main/SETUP.md) - setting up your local environment for development and testing - [Development](https://github.com/ConvertKit/convertkit-wordpress/blob/main/DEVELOPMENT.md) - best practices for development - [Testing](https://github.com/ConvertKit/convertkit-wordpress/blob/main/TESTING.md) - how to write and run tests -- [Actions and Filters](ACTIONS-FILTERS.md) - Actions and Filters available to WordPress Developers looking to extend ConvertKit's functionality +- [Actions and Filters](ACTIONS-FILTERS.md) - Actions and Filters available to WordPress Developers looking to extend Kit's functionality -For ConvertKit, there is a separate guide to deploying new versions to wordpress.org: +For Kit, there is a separate guide to deploying new versions to wordpress.org: - [Deployment](https://github.com/ConvertKit/convertkit-wordpress/blob/main/DEPLOYMENT.md) - how to deploy a new Plugin version to [WordPress.org](https://wordpress.org/plugins/integrate-convertkit-wpforms/) These guides can be applied to this Plugin; there may be some minor differences in terms of .env.testing configuration. \ No newline at end of file diff --git a/includes/class-integrate-convertkit-wpforms.php b/includes/class-integrate-convertkit-wpforms.php index d1e6c7c..efe30e4 100644 --- a/includes/class-integrate-convertkit-wpforms.php +++ b/includes/class-integrate-convertkit-wpforms.php @@ -53,7 +53,7 @@ public function init() { $this->name = 'Kit'; $this->slug = 'convertkit'; $this->priority = 14; - $this->icon = INTEGRATE_CONVERTKIT_WPFORMS_URL . 'resources/backend/images/logomark.svg'; + $this->icon = INTEGRATE_CONVERTKIT_WPFORMS_URL . 'resources/backend/images/logo-square.jpg'; // Initialize classes. $this->review_request = new ConvertKit_Review_Request( 'Kit for WPForms', 'integrate-convertkit-wpforms', INTEGRATE_CONVERTKIT_WPFORMS_PATH ); diff --git a/integrate-convertkit-wpforms.php b/integrate-convertkit-wpforms.php index da526bf..a5fb57c 100644 --- a/integrate-convertkit-wpforms.php +++ b/integrate-convertkit-wpforms.php @@ -1,10 +1,10 @@ - - - diff --git a/tests/_support/Helper/Acceptance/Plugin.php b/tests/_support/Helper/Acceptance/Plugin.php index 8176103..8b4aa31 100644 --- a/tests/_support/Helper/Acceptance/Plugin.php +++ b/tests/_support/Helper/Acceptance/Plugin.php @@ -19,7 +19,7 @@ class Plugin extends \Codeception\Module */ public function activateConvertKitPlugin($I) { - $I->activateThirdPartyPlugin($I, 'integrate-convertkit-wpforms'); + $I->activateThirdPartyPlugin($I, 'kit-formerly-convertkit-for-wpforms'); } /** @@ -32,7 +32,7 @@ public function activateConvertKitPlugin($I) */ public function deactivateConvertKitPlugin($I) { - $I->deactivateThirdPartyPlugin($I, 'integrate-convertkit-wpforms'); + $I->deactivateThirdPartyPlugin($I, 'kit-formerly-convertkit-for-wpforms'); } /**