Skip to content

Commit

Permalink
Merge pull request #2009 from woocommerce/tweak/update-pmax-content
Browse files Browse the repository at this point in the history
Update Asset Groups Texts
  • Loading branch information
puntope authored Jul 6, 2023
2 parents 566e407 + 3546fdf commit 9b77558
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 15 deletions.
26 changes: 19 additions & 7 deletions js/src/components/paid-ads/asset-group/asset-group-section.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ 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 AppDocumentationLink from '.~/components/app-documentation-link';
import './asset-group-section.scss';

/**
Expand All @@ -29,7 +30,7 @@ export default function AssetGroupSection() {
className="gla-asset-group-section"
title={ createInterpolateElement(
__(
'Add dynamic ad assets <optional>(Optional)</optional>',
'Add additional assets <optional>(Optional)</optional>',
'google-listings-and-ads'
),
{
Expand All @@ -39,12 +40,23 @@ export default function AssetGroupSection() {
}
) }
description={
<p className="gla-asset-group-section__primary-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'
) }
</p>
<>
<p className="gla-asset-group-section__primary-description">
{ __(
'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'
) }
</p>
<p>
<AppDocumentationLink
context="asset-group"
linkId="asset-group-learn-more"
href="https://support.google.com/google-ads/answer/10729160"
>
{ __( 'Learn more', 'google-listings-and-ads' ) }
</AppDocumentationLink>
</p>
</>
}
>
<VerticalGapLayout size="medium">
Expand Down
7 changes: 5 additions & 2 deletions js/src/components/paid-ads/asset-group/asset-group.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,12 @@ export default function AssetGroup( { campaign } ) {
return (
<StepContent>
<StepContentHeader
title={ __( 'Boost your campaign', 'google-listings-and-ads' ) }
title={ __(
'Optimize your campaign',
'google-listings-and-ads'
) }
description={ __(
'Take your campaign to the next level with dynamic ad assets',
'Drive greater performance by adding text and image assets to create personalized and engaging ads',
'google-listings-and-ads'
) }
/>
Expand Down
4 changes: 2 additions & 2 deletions js/src/components/paid-ads/asset-group/faqs-section.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ const faqItems = [
<>
<div>
{ __(
`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'
) }
</div>
<div>
{ __(
'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'
) }
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function CampaignAssetsTour( { referenceElementCssSelector } ) {
<div className="gla-campaign-assets-tour__heading">
<GridiconTrending />
{ __(
'Boost your campaign',
'Optimize your campaign',
'google-listings-and-ads'
) }
<Pill>
Expand All @@ -54,7 +54,7 @@ export default function CampaignAssetsTour( { referenceElementCssSelector } ) {
desktop: (
<>
{ __(
'Create ads that boost visibility and maximize campaign performance using dynamic ad assets.',
'Add images, headlines, and descriptions to drive better engagement and more sales.',
'google-listings-and-ads'
) }
<br />
Expand Down
2 changes: 1 addition & 1 deletion js/src/pages/create-paid-ads-campaign/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const CreatePaidAdsCampaign = () => {
{
key: STEP.ASSET_GROUP,
label: __(
'Boost your campaign',
'Optimize your campaign',
'google-listings-and-ads'
),
content: <AssetGroup />,
Expand Down
2 changes: 1 addition & 1 deletion js/src/pages/edit-paid-ads-campaign/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ const EditPaidAdsCampaign = () => {
{
key: STEP.ASSET_GROUP,
label: __(
'Boost your campaign',
'Optimize your campaign',
'google-listings-and-ads'
),
content: <AssetGroup campaign={ campaign } />,
Expand Down

0 comments on commit 9b77558

Please sign in to comment.