Skip to content

Commit

Permalink
Merge pull request #66 from ConvertKit/branding-fixes
Browse files Browse the repository at this point in the history
Branding Fixes
  • Loading branch information
n7studios authored Oct 4, 2024
2 parents f1c62df + b27d03b commit cb011b9
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 17 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion includes/class-integrate-convertkit-wpforms.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down
4 changes: 2 additions & 2 deletions integrate-convertkit-wpforms.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php
/**
* Plugin Name: Integrate ConvertKit and WPForms
* Plugin Name: Kit (formerly ConvertKit) for WPForms
* Plugin URI: https://kit.com
* Description: Create Kit signup forms using WPForms
* Version: 1.7.6
* Author: ConvertKit
* Author: Kit
* Author URI: https://kit.com
* Text Domain: integrate-convertkit-wpforms
* Domain Path: /languages
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
=== Integrate Kit (formerly ConvertKit) and WPForms ===
=== Kit (formerly ConvertKit) for WPForms ===
Contributors: nathanbarry, convertkit, billerickson
Donate link: https://kit.com
Tags: form, wpforms, convertkit, email, marketing
Expand Down
Binary file added resources/backend/images/logo-square.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 0 additions & 4 deletions resources/backend/images/logomark.svg

This file was deleted.

4 changes: 2 additions & 2 deletions tests/_support/Helper/Acceptance/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}

/**
Expand All @@ -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');
}

/**
Expand Down

0 comments on commit cb011b9

Please sign in to comment.