From 75fbb1831ffb0f8c3af6c287d60a5a8037fd70ff Mon Sep 17 00:00:00 2001
From: gooyeduck
Date: Tue, 14 Nov 2023 00:07:22 +0600
Subject: [PATCH 1/5] fix(dashboard): links updated
In this commit the link of the dashboard and the pricing links is updated
links are
-docs
-support
-feature request
-purchase links
resolves: Admin UI: link update #314
---
assets/src/components/dashboard/Overview.js | 15 +++++++++++----
assets/src/components/dashboard/Pricing.js | 17 +++++++++++------
.../components/dashboard/styles/overview.scss | 16 +++++++++++++---
3 files changed, 35 insertions(+), 13 deletions(-)
diff --git a/assets/src/components/dashboard/Overview.js b/assets/src/components/dashboard/Overview.js
index 14ff722d..ede668b8 100644
--- a/assets/src/components/dashboard/Overview.js
+++ b/assets/src/components/dashboard/Overview.js
@@ -10,8 +10,15 @@ import PanelContainer from "../settings/Panels/PanelContainer";
import PanelRow from "../settings/Panels/PanelRow";
import IntroModules from "./images/intro-section-img.svg";
import {__} from "@wordpress/i18n";
-import SectionSpacer from "../settings/Panels/PanelSettings/SectionSpacer";
+
const Overview = () => {
+ const baseUrlStore = "https://storegrowth.io";
+ const baseUrlInvizo = "https://invizo.io"
+ const links ={
+ doc : "/documentation",
+ featureRequest: "/support",
+ support:"/support"
+ }
return (
@@ -75,7 +82,7 @@ const Overview = () => {
Access our comprehensive documentation for easy, step-by-step guidance on using every feature of our plugin. Get answers quickly and make the most of our powerful tools.
-
Read More
+
Read More
{/* close-documentation-section */}
@@ -95,7 +102,7 @@ const Overview = () => {
Stuck or have questions? Reach out to our responsive email support. Our team is here to help you with any inquiries or issues you might encounter. We're just an email away!
- Contact Us
+ Contact Us
{/* close-email-section */}
@@ -113,7 +120,7 @@ const Overview = () => {
Your insights matter! Help us shape the future of our plugin by sharing your feature requests. We're eager to hear your ideas and work together to make our plugin even better. Your feedback is invaluable, and we appreciate your contribution to improving the plugin to meet your needs.
- Submit Request
+ Submit Request
{/* close-request-features */}
diff --git a/assets/src/components/dashboard/Pricing.js b/assets/src/components/dashboard/Pricing.js
index 3c118264..a45ce9eb 100644
--- a/assets/src/components/dashboard/Pricing.js
+++ b/assets/src/components/dashboard/Pricing.js
@@ -27,7 +27,12 @@ const Pricing = () => {
rightContent: "Monthly",
};
const billingText = "(billed annualy)";
- const purchaseSlug = "https://storegrowth.io";
+ const purchaseSlug = "https://invizo.io/buy";
+ const purchaseType = {
+ individual: "/storegrowth-pro-individual",
+ developer: "/storegrowth-pro-developer",
+ business: "/storegrowth-pro-business",
+ };
const modules = [
"Quick Cart",
"Sales Pop",
@@ -52,7 +57,7 @@ const Pricing = () => {
>
-
+
-
+
diff --git a/assets/src/components/dashboard/styles/overview.scss b/assets/src/components/dashboard/styles/overview.scss
index ee0d86b0..14373fad 100644
--- a/assets/src/components/dashboard/styles/overview.scss
+++ b/assets/src/components/dashboard/styles/overview.scss
@@ -68,7 +68,7 @@
justify-content: space-between;
.intro-section-text {
- padding: 53px 0px 0px 40px;
+ padding: 40px 0px 0px 40px;
h3 {
color: #073b4c;
@@ -240,6 +240,7 @@
border: 1px solid #f37a50;
display: flex;
align-items: center;
+ justify-content: center;
margin-top: 30px;
&:hover {
@@ -258,7 +259,10 @@
text-align: center;
text-decoration: none;
width: 134px;
- margin-left: 26px;
+
+ &:focus {
+ box-shadow: none;
+ }
}
}
@@ -465,6 +469,11 @@
text-decoration: none;
margin: 0;
+ &:focus {
+ box-shadow: none;
+ outline: none;
+ }
+
span {
color: #fff;
text-transform: capitalize;
@@ -595,7 +604,7 @@
.dashboad-content {
margin-top: 30px;
- .intro-section{
+ .intro-section {
margin-top: 0;
.intro-section-text {
@@ -722,6 +731,7 @@
}
.sgsb-pricing-data-content {
+
.yearly-price,
.monthly-price {
font-size: 24px !important;
From 79ac99070506dd2b623672aa53efbf38539fa64b Mon Sep 17 00:00:00 2001
From: gooyeduck
Date: Tue, 14 Nov 2023 16:30:29 +0600
Subject: [PATCH 2/5] fix(dashboard): premium links updated
In this commit the get premium link is being updated and the links also being redirected to the pricing table.
some minor button visited color being fixed.
resolves: Admin UI: link update #314
---
assets/src/admin.scss | 9 +++++++++
assets/src/components/dashboard/PremiumBox.js | 6 +-----
assets/src/components/dashboard/Promotion.js | 5 +++--
assets/src/components/dashboard/styles/overview.scss | 5 +++++
assets/src/components/modules/PremiumBox.js | 7 ++-----
assets/src/components/settings/HeadBar.js | 7 ++++---
6 files changed, 24 insertions(+), 15 deletions(-)
diff --git a/assets/src/admin.scss b/assets/src/admin.scss
index 5f9ca40e..86322ddb 100644
--- a/assets/src/admin.scss
+++ b/assets/src/admin.scss
@@ -961,6 +961,7 @@ End Settings Sidebar
&:focus {
color: #ffffff;
+ box-shadow: none;
}
span {
font-size: 16px;
@@ -978,6 +979,7 @@ End Settings Sidebar
&:focus {
color: #ffffff;
+ box-shadow: none;
}
}
}
@@ -1500,6 +1502,11 @@ End Settings Sidebar
justify-content: center;
gap: 9px;
+ &:focus{
+ color: #ffffff;
+ box-shadow: none;
+ }
+
}
h4,
@@ -1867,6 +1874,7 @@ End Settings Sidebar
&:focus {
color: #ffffff;
+ box-shadow: none;
}
span {
font-size: 18px;
@@ -1884,6 +1892,7 @@ End Settings Sidebar
&:focus {
color: #ffffff;
+ box-shadow: none;
}
}
}
diff --git a/assets/src/components/dashboard/PremiumBox.js b/assets/src/components/dashboard/PremiumBox.js
index c1479894..3ceda461 100644
--- a/assets/src/components/dashboard/PremiumBox.js
+++ b/assets/src/components/dashboard/PremiumBox.js
@@ -19,11 +19,7 @@ function PremiumBox() {
support and boost your
website’s visibility.
- {/* Reviews from real users
-
-
-
*/}
-
+
Get Premium
{
+ const pricingPath = window.location.hash === "#/dashboard/pricing";
return (
-
-
+ {!pricingPath &&
}
+
);
};
diff --git a/assets/src/components/dashboard/styles/overview.scss b/assets/src/components/dashboard/styles/overview.scss
index 14373fad..8b43b693 100644
--- a/assets/src/components/dashboard/styles/overview.scss
+++ b/assets/src/components/dashboard/styles/overview.scss
@@ -856,6 +856,11 @@
align-items: center;
justify-content: center;
gap: 9px;
+
+ &:focus{
+ color: #ffffff;
+ box-shadow: none;
+ }
}
h4,
diff --git a/assets/src/components/modules/PremiumBox.js b/assets/src/components/modules/PremiumBox.js
index c1479894..4f0e92ba 100644
--- a/assets/src/components/modules/PremiumBox.js
+++ b/assets/src/components/modules/PremiumBox.js
@@ -19,11 +19,8 @@ function PremiumBox() {
support and boost your
website’s visibility.
- {/* Reviews from real users
-
-
-
*/}
-
+
+
Get Premium
- {!sgsbAdmin.isPro && (
+ {(!sgsbAdmin.isPro && !pricingPath) && (
Get Premium
From 21b16a5390c11d067ba87c54ca8ec0eabc6b2ca6 Mon Sep 17 00:00:00 2001
From: gooyeduck
Date: Tue, 14 Nov 2023 16:44:39 +0600
Subject: [PATCH 3/5] fix(dashboard): pricing subheading remove
---
assets/src/components/dashboard/Pricing.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/assets/src/components/dashboard/Pricing.js b/assets/src/components/dashboard/Pricing.js
index a45ce9eb..a333d9a0 100644
--- a/assets/src/components/dashboard/Pricing.js
+++ b/assets/src/components/dashboard/Pricing.js
@@ -68,12 +68,12 @@ const Pricing = () => {
{/* Package Table */}
-
The Package We Provide
+
Choose Your Plan
-
+ {/*
Join 100,000+ website owners who use Booster to
increase sales, engage visitors and so much more.
-
+ */}
Date: Wed, 15 Nov 2023 10:34:03 +0600
Subject: [PATCH 4/5] fix(dashboard): privacy policy link updated
---
assets/src/components/dashboard/Gaurantee.js | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/assets/src/components/dashboard/Gaurantee.js b/assets/src/components/dashboard/Gaurantee.js
index 5610ba17..1ee18f56 100644
--- a/assets/src/components/dashboard/Gaurantee.js
+++ b/assets/src/components/dashboard/Gaurantee.js
@@ -6,7 +6,11 @@ const Gaurantee = () => {
Without Any Question
-
Terms & Condition
+
);
};
From 8dcd2dfccb59a21cb1cfd3f32623bfec4626f2f6 Mon Sep 17 00:00:00 2001
From: gooyeduck
Date: Wed, 15 Nov 2023 10:37:43 +0600
Subject: [PATCH 5/5] fix(dashboard): boxshadow is removed on focus
---
assets/src/components/dashboard/styles/overview.scss | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/assets/src/components/dashboard/styles/overview.scss b/assets/src/components/dashboard/styles/overview.scss
index 8b43b693..9d3700ea 100644
--- a/assets/src/components/dashboard/styles/overview.scss
+++ b/assets/src/components/dashboard/styles/overview.scss
@@ -180,6 +180,10 @@
font-weight: 600;
text-decoration-line: underline;
text-underline-offset: 0.1em;
+
+ &:focus{
+ box-shadow: none;
+ }
}
}
}
@@ -787,6 +791,11 @@
font-weight: 400;
text-transform: capitalize;
margin-top: 15px;
+
+ a:focus {
+ outline: none;
+ box-shadow: none;
+ }
}
}
@@ -857,7 +866,7 @@
justify-content: center;
gap: 9px;
- &:focus{
+ &:focus {
color: #ffffff;
box-shadow: none;
}