diff --git a/js/src/pages/create-paid-ads-campaign/index.js b/js/src/pages/create-paid-ads-campaign/index.js
index 89051d9129..fa7e3630ef 100644
--- a/js/src/pages/create-paid-ads-campaign/index.js
+++ b/js/src/pages/create-paid-ads-campaign/index.js
@@ -124,7 +124,7 @@ const CreatePaidAdsCampaign = () => {
{
key: STEP.ASSET_GROUP,
label: __(
- 'Boost your campaign',
+ 'Optimize your campaign',
'google-listings-and-ads'
),
content: ,
diff --git a/js/src/pages/edit-paid-ads-campaign/index.js b/js/src/pages/edit-paid-ads-campaign/index.js
index 1e0bf94c02..7f2f73c099 100644
--- a/js/src/pages/edit-paid-ads-campaign/index.js
+++ b/js/src/pages/edit-paid-ads-campaign/index.js
@@ -174,7 +174,7 @@ const EditPaidAdsCampaign = () => {
{
key: STEP.ASSET_GROUP,
label: __(
- 'Boost your campaign',
+ 'Optimize your campaign',
'google-listings-and-ads'
),
content: ,
From a7d3feb3c0bc1931f320c8e04940a46c61ca532d Mon Sep 17 00:00:00 2001
From: Miguel Perez Pellicer <5908855+puntope@users.noreply.github.com>
Date: Wed, 5 Jul 2023 16:22:50 +0400
Subject: [PATCH 3/5] Change text from Asset Groups
---
.../asset-group/asset-group-section.js | 26 ++++++++++++++-----
1 file changed, 19 insertions(+), 7 deletions(-)
diff --git a/js/src/components/paid-ads/asset-group/asset-group-section.js b/js/src/components/paid-ads/asset-group/asset-group-section.js
index f9a3e8506a..75ac4f413d 100644
--- a/js/src/components/paid-ads/asset-group/asset-group-section.js
+++ b/js/src/components/paid-ads/asset-group/asset-group-section.js
@@ -14,6 +14,7 @@ import VerticalGapLayout from '.~/components/vertical-gap-layout';
import FinalUrlCard from './final-url-card';
import AssetGroupCard from './asset-group-card';
import './asset-group-section.scss';
+import AppDocumentationLink from '.~/components/app-documentation-link';
/**
* Renders the form content for managing an asset group of a campaign with Section UI.
@@ -29,7 +30,7 @@ export default function AssetGroupSection() {
className="gla-asset-group-section"
title={ createInterpolateElement(
__(
- 'Add dynamic ad assets (Optional)',
+ 'Add additional assets (Optional)',
'google-listings-and-ads'
),
{
@@ -39,12 +40,23 @@ export default function AssetGroupSection() {
}
) }
description={
-
- { __(
- 'Create ads that effectively boost visibility and generate maximum conversions. Google will mix and match assets to create optimized ads in a variety of formats— maximizing your campaign’s performance.',
- 'google-listings-and-ads'
- ) }
-
+ <>
+
+ { __(
+ 'Upload text and image assets to effectively reach and engage your target shoppers. Google will mix and match your assets, continually testing combinations to create personalized and optimal shopping experiences.',
+ 'google-listings-and-ads'
+ ) }
+
+
+
+ { __( 'Learn more', 'google-listings-and-ads' ) }
+
+
+ >
}
>
From 4e99229e924459ebb9f7a7858ce287c198cf2786 Mon Sep 17 00:00:00 2001
From: Miguel Perez Pellicer <5908855+puntope@users.noreply.github.com>
Date: Wed, 5 Jul 2023 16:25:50 +0400
Subject: [PATCH 4/5] Change FAQ text
---
js/src/components/paid-ads/asset-group/faqs-section.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/js/src/components/paid-ads/asset-group/faqs-section.js b/js/src/components/paid-ads/asset-group/faqs-section.js
index c46c5eb405..c8672cd85b 100644
--- a/js/src/components/paid-ads/asset-group/faqs-section.js
+++ b/js/src/components/paid-ads/asset-group/faqs-section.js
@@ -48,13 +48,13 @@ const faqItems = [
<>
{ __(
- `Dynamic ad assets can elevate your campaign by offering a variety of ad combinations that capture your audience's attention and generate maximum engagement. By leveraging Google's asset-mixing technology, your ads can be optimized to deliver the right message, to the right people, at the right time.`,
+ "Text and image assets can elevate your campaign by offering a variety of ad combinations that capture your audience's attention and generate maximum engagement. By leveraging Google's asset-mixing technology, your ads can be optimized to deliver the right message, to the right people, at the right time.",
'google-listings-and-ads'
) }
{ __(
- 'Compared to product ads—which showcase individual products and are designed to drive direct sales and revenue— ads with dynamic assets are typically used to highlight your business, generate interest, and attract new customers. While both types of ads can drive conversions, using them together can generate even greater results.',
+ 'Compared to product ads—which showcase individual products and are designed to drive direct sales and revenue— ads with creative assets are typically used to highlight your business, generate interest, and attract new customers. While both types of ads can drive conversions, using them together can generate even greater results.',
'google-listings-and-ads'
) }
From 3546fdf71d250cca6e15a267a654843a4842efc5 Mon Sep 17 00:00:00 2001
From: Miguel Perez Pellicer <5908855+puntope@users.noreply.github.com>
Date: Thu, 6 Jul 2023 16:44:02 +0400
Subject: [PATCH 5/5] Apply review suggestions
---
.../paid-ads/asset-group/asset-group-section.js | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/js/src/components/paid-ads/asset-group/asset-group-section.js b/js/src/components/paid-ads/asset-group/asset-group-section.js
index 75ac4f413d..3979ed1fb4 100644
--- a/js/src/components/paid-ads/asset-group/asset-group-section.js
+++ b/js/src/components/paid-ads/asset-group/asset-group-section.js
@@ -13,8 +13,8 @@ import Section from '.~/wcdl/section';
import VerticalGapLayout from '.~/components/vertical-gap-layout';
import FinalUrlCard from './final-url-card';
import AssetGroupCard from './asset-group-card';
-import './asset-group-section.scss';
import AppDocumentationLink from '.~/components/app-documentation-link';
+import './asset-group-section.scss';
/**
* Renders the form content for managing an asset group of a campaign with Section UI.
@@ -49,9 +49,9 @@ export default function AssetGroupSection() {
{ __( 'Learn more', 'google-listings-and-ads' ) }