Skip to content

Commit a53b991

Browse files
authored
Merge pull request #158 from WebDevStudios/release/2.0.3
fixed :: Design conflict with WP Core
2 parents b89e855 + 4c6beb4 commit a53b991

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

README.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: constantcontact, webdevstudios, znowebdev, jmichaelward, ggwicz, r
33
Tags: Constant Contact, WooCommerce, eCommerce, email marketing, marketing automation, email, form, forms, marketing, mobile, opt-in, plugin, signup, subscribe, subscription, widget
44
Requires at least: 5.2.2
55
Tested up to: 6.0.2
6-
Stable tag: 2.0.2
6+
Stable tag: 2.0.3
77
Requires PHP: 7.2
88
License: GPLv3
99

@@ -80,6 +80,10 @@ You've connected your WooCommerce store to Constant Contact, promoted your WooCo
8080
[Learn more with our step-by-step revenue reporting guide.](https://knowledgebase.constantcontact.com/articles/KnowledgeBase/36892-View-Recovered-Revenue-from-the-WooCommerce-Abandoned-Cart-Reminder-Email?q=woocommerce*&lang=en_US)
8181

8282
== Changelog ==
83+
= 2.0.3 =
84+
85+
* Fix - Minor design fixes, bug fixes and stability improvements.
86+
8387
= 2.0.2 =
8488

8589
* Fix - Minor bug fixes and stability improvements.

app/admin.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ body.toplevel_page_ctct-woo-settings,
66
font-weight: 400px;
77
}
88

9-
body.toplevel_page_ctct-woo-settings .wrap.woocommerce,
9+
body.toplevel_page_ctct-woo-settings .cc-wrap.woocommerce,
1010
.cc-woo-wrap {
1111
padding: 20px 30px;
1212
margin: 10px 20px 0 2px;
@@ -34,7 +34,7 @@ body.toplevel_page_ctct-woo-settings h2 {
3434
background-color: #ffff;
3535
}
3636

37-
.wrap {
37+
.cc-wrap {
3838
position: relative;
3939
}
4040
.cc-woo-welcome-wrap .container {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "constant-contact-woocommerce",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "",
55
"main": "index.js",
66
"engines": {

plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: Constant Contact + WooCommerce
1111
* Description: Add products to your emails and sync your contacts.
1212
* Plugin URI: https://github.com/WebDevStudios/constant-contact-woocommerce
13-
* Version: 2.0.2
13+
* Version: 2.0.3
1414
* Author: Constant Contact
1515
* Author URI: https://www.constantcontact.com/
1616
* Text Domain: cc-woo

src/Plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ final class Plugin extends ServiceRegistrar {
4747
* @since 1.0.0
4848
* @var string
4949
*/
50-
const PLUGIN_VERSION = '2.0.2';
50+
const PLUGIN_VERSION = '2.0.3';
5151

5252
/**
5353
* Whether the plugin is currently active.

src/View/Admin/MenuItem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function add_cc_woo_admin_menu() {
5656
*/
5757
public function cctct_standalone_settings_page_contents() {
5858

59-
echo '<div class="wrap woocommerce"><form method="post" id="mainform" action="" enctype="multipart/form-data">';
59+
echo '<div class="wrap cc-wrap woocommerce"><form method="post" id="mainform" action="" enctype="multipart/form-data">';
6060
\WC_Admin_Settings::get_settings_pages();
6161
$woo = new \WebDevStudios\CCForWoo\View\Admin\WooTab();
6262
woocommerce_admin_fields( $woo->get_welcome_screen() );

0 commit comments

Comments
 (0)