Skip to content
Merged
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
4 changes: 2 additions & 2 deletions views/backend/setup-wizard/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<head>
<meta name="viewport" content="width=device-width"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><?php echo esc_html( CONVERTKIT_PLUGIN_NAME ); ?> &lsaquo; <?php bloginfo( 'name' ); ?> &#8212; WordPress</title>
Copy link
Contributor Author

@n7studios n7studios Dec 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This used to use the constant CONVERTKIT_PLUGIN_NAME, defined here.

The only other place this constant is used is as part of the user agent string in API requests; I'm unsure if API logs rely on it stating 'ConvertKit'. Happy to change the constant value if it won't break anything on the API/log side.

<title><?php echo esc_html( 'Kit' ); ?> &lsaquo; <?php bloginfo( 'name' ); ?> &#8212; WordPress</title>
<script type="text/javascript">
var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ?>';
</script>
Expand All @@ -28,7 +28,7 @@
if ( ! $this->is_modal() ) {
?>
<header id="convertkit-setup-wizard-header">
<h1><?php echo esc_html( CONVERTKIT_PLUGIN_NAME ); ?></h1>
<h1><?php echo esc_html( 'Kit' ); ?></h1>
</header>
<?php
}
Expand Down