Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

R2: Updated Enhanced Conversion flow #2361

Open
wants to merge 14 commits into
base: feature/2239-enhanced-conversions-panel
Choose a base branch
from

This file was deleted.

98 changes: 0 additions & 98 deletions js/src/components/enhanced-conversion-tracking-settings/cta.js

This file was deleted.

221 changes: 0 additions & 221 deletions js/src/components/enhanced-conversion-tracking-settings/cta.test.js

This file was deleted.

27 changes: 27 additions & 0 deletions js/src/components/enhanced-conversion-tracking-settings/enable.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/**
* External dependencies
*/
import { Fragment } from '@wordpress/element';
import { __ } from '@wordpress/i18n';

/**
* Internal dependencies
*/
import CTA from '.~/product-feed/submission-success-guide/enhanced-conversions/cta';

const Enable = () => {
return (
<Fragment>
<p>
{ __(
'In order to enable enhanced conversions, you will need to visit the settings in your Ads account. You will be prompted to accept terms & conditions.',
joemcgill marked this conversation as resolved.
Show resolved Hide resolved
'google-listings-and-ads'
) }
</p>

<CTA />
</Fragment>
);
};

export default Enable;
Loading
Loading