Skip to content

Commit

Permalink
Merge pull request #197 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 2580133 + 6a4f711 commit 924e26f
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ConvertKit for WooCommerce
# Kit for WooCommerce

Welcome to the Kit (formerly ConvertKit) WooCommerce 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 WooCommerce 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/convertkit-woocommerce/). Downloading and installing directly from GitHub will not work.**

Expand Down
26 changes: 19 additions & 7 deletions resources/backend/css/settings.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,20 @@ body.woocommerce_page_wc-settings .wrap form#mainform ul.subsubsub {
*/
body.woocommerce_page_wc-settings .wrap .postbox {
background: #fff;
box-shadow: 0 2px 5px #0000000d;
color: #373f45;
color: #6e6e6e;
margin: 0 0 30px 0;
padding: 40px 30px 30px 30px;
font-size: 14px;
border: 1px solid #EDF2F4;
border-radius: 8px;
border: none;
}
body.woocommerce_page_wc-settings .wrap .postbox h2 {
margin: 0 0 30px 0;
padding: 0 0 30px 0;
font-size: 24px;
font-weight: 600;
border-bottom: 1px solid #EDF2F4;
border-bottom: 1px solid #e3e3e3;
color: #3d3d3d;
}
body.woocommerce_page_wc-settings .wrap .postbox p {
font-size: 14px;
Expand All @@ -38,7 +39,9 @@ body.woocommerce_page_wc-settings .wrap p.submit {
padding: 0;
}
body.woocommerce_page_wc-settings .wrap p.submit .button,
body.woocommerce_page_wc-settings .wrap p.submit .button-primary {
body.woocommerce_page_wc-settings .wrap p.submit .button-primary,
body.woocommerce_page_wc-settings .wrap .button-secondary {
border-radius: 10px;
margin: 0 5px 0 0;
padding: 4px 12px;
font-size: 14px;
Expand All @@ -49,6 +52,15 @@ body.woocommerce_page_wc-settings .wrap p.submit .button-primary {
color: #fff;
}
body.woocommerce_page_wc-settings .wrap p.submit .button-primary:hover {
background: #1e1e1e;
border-color: #1e1e1e;
background: #3d3d3d;
border-color: #3d3d3d;
}
body.woocommerce_page_wc-settings .wrap .button-secondary {
background: #f0f0f0;
border-color: #f0f0f0;
color: #3d3d3d;
}
body.woocommerce_page_wc-settings .wrap .button-secondary:hover {
background: #ddd;
border-color: #ddd;
}
6 changes: 3 additions & 3 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, 'convertkit-for-woocommerce');
$I->activateThirdPartyPlugin($I, 'kit-formerly-convertkit-for-woocommerce');
}

/**
Expand All @@ -32,7 +32,7 @@ public function activateConvertKitPlugin($I)
*/
public function deactivateConvertKitPlugin($I)
{
$I->deactivateThirdPartyPlugin($I, 'convertkit-for-woocommerce');
$I->deactivateThirdPartyPlugin($I, 'kit-formerly-convertkit-for-woocommerce');
}

/**
Expand Down Expand Up @@ -73,7 +73,7 @@ public function activateWooCommerceAndConvertKitPlugins($I)
*/
public function deactivateWooCommerceAndConvertKitPlugins($I)
{
$I->deactivateThirdPartyPlugin($I, 'convertkit-for-woocommerce');
$I->deactivateThirdPartyPlugin($I, 'kit-formerly-convertkit-for-woocommerce');

// Deactivate WooCommerce Stripe Gateway before WooCommerce, to prevent WooCommerce throwing a fatal error.
$I->deactivateThirdPartyPlugin($I, 'woocommerce-gateway-stripe');
Expand Down
4 changes: 2 additions & 2 deletions woocommerce-convertkit.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
* @author ConvertKit
*
* @wordpress-plugin
* Plugin Name: ConvertKit for WooCommerce
* Plugin Name: Kit (formerly ConvertKit) for WooCommerce
* Plugin URI: https://www.kit.com
* Description: Integrates WooCommerce with Kit, allowing customers to be automatically sent to your Kit account.
* Version: 1.8.7
* Author: ConvertKit
* Author: Kit
* Author URI: https://www.kit.com
* Text Domain: woocommerce-convertkit
*
Expand Down

0 comments on commit 924e26f

Please sign in to comment.