Skip to content

Commit

Permalink
Merge pull request #158 from WebDevStudios/release/2.0.3
Browse files Browse the repository at this point in the history
fixed :: Design conflict with WP Core
  • Loading branch information
bplv112 authored Sep 26, 2022
2 parents b89e855 + 4c6beb4 commit a53b991
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: constantcontact, webdevstudios, znowebdev, jmichaelward, ggwicz, r
Tags: Constant Contact, WooCommerce, eCommerce, email marketing, marketing automation, email, form, forms, marketing, mobile, opt-in, plugin, signup, subscribe, subscription, widget
Requires at least: 5.2.2
Tested up to: 6.0.2
Stable tag: 2.0.2
Stable tag: 2.0.3
Requires PHP: 7.2
License: GPLv3

Expand Down Expand Up @@ -80,6 +80,10 @@ You've connected your WooCommerce store to Constant Contact, promoted your WooCo
[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)

== Changelog ==
= 2.0.3 =

* Fix - Minor design fixes, bug fixes and stability improvements.

= 2.0.2 =

* Fix - Minor bug fixes and stability improvements.
Expand Down
4 changes: 2 additions & 2 deletions app/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ body.toplevel_page_ctct-woo-settings,
font-weight: 400px;
}

body.toplevel_page_ctct-woo-settings .wrap.woocommerce,
body.toplevel_page_ctct-woo-settings .cc-wrap.woocommerce,
.cc-woo-wrap {
padding: 20px 30px;
margin: 10px 20px 0 2px;
Expand Down Expand Up @@ -34,7 +34,7 @@ body.toplevel_page_ctct-woo-settings h2 {
background-color: #ffff;
}

.wrap {
.cc-wrap {
position: relative;
}
.cc-woo-welcome-wrap .container {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "constant-contact-woocommerce",
"version": "2.0.2",
"version": "2.0.3",
"description": "",
"main": "index.js",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Plugin Name: Constant Contact + WooCommerce
* Description: Add products to your emails and sync your contacts.
* Plugin URI: https://github.com/WebDevStudios/constant-contact-woocommerce
* Version: 2.0.2
* Version: 2.0.3
* Author: Constant Contact
* Author URI: https://www.constantcontact.com/
* Text Domain: cc-woo
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ final class Plugin extends ServiceRegistrar {
* @since 1.0.0
* @var string
*/
const PLUGIN_VERSION = '2.0.2';
const PLUGIN_VERSION = '2.0.3';

/**
* Whether the plugin is currently active.
Expand Down
2 changes: 1 addition & 1 deletion src/View/Admin/MenuItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function add_cc_woo_admin_menu() {
*/
public function cctct_standalone_settings_page_contents() {

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

0 comments on commit a53b991

Please sign in to comment.