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

Add UTM params #827

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion php/templates/connection-string.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
// translators: Link to create a Cloudinary account.
esc_html__( '%1$sCloudinary account%2$s', 'cloudinary' ),
sprintf(
'<a href="https://cloudinary.com/users/register/free" target="_blank" title="%s">',
'<a href="https://cloudinary.com/users/register/free?utm_source=wordpress-plugin-wizard&utm_medium=affiliate&utm_content=sign-up&utm_campaign=1976" target="_blank" title="%s">',
esc_attr__( 'Create here a free Cloudinary account', 'cloudinary' )
),
'</a>'
Expand Down
2 changes: 1 addition & 1 deletion ui-definitions/components/wizard.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
<p>
<?php esc_html_e( 'Alternatively, choose lower quality settings to save on bandwidth and speed up delivery times.', 'cloudinary' ); ?>
</p>
<a href="https://cloudinary.com/signup" class="button button-primary" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Signup', 'cloudinary' ); ?></a>
<a href="https://cloudinary.com/signup?utm_source=wordpress-plugin-wizard&utm_medium=affiliate&utm_content=sign-up&utm_campaign=1976" class="button button-primary" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Signup', 'cloudinary' ); ?></a>
<div class="cld-wizard-intro-welcome">
<img src="<?php echo esc_url( $cloudinary->dir_url . 'css/images/wizard-welcome.jpg' ); ?>" width="650px"/>
</div>
Expand Down