PluginProbe
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages / 3.4.4
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages v3.4.4
3.4.4 3.4.3 3.4.2 3.4.1 3.4.0 3.3.9 3.3.8 3.3.7 3.3.6 3.3.5 3.3.4 3.3.3 3.3.2 3.3.1 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 All 197 releases
convertkit / views / backend / setup-wizard / convertkit-landing-page-setup / content-finish.php

content-finish.php in Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages 3.4.4, at views/backend/setup-wizard/convertkit-landing-page-setup/content-finish.php

37 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Outputs the content for the Landing Page Wizard > Done step.
4 *
5 * @package ConvertKit
6 * @author ConvertKit
7 */
8
9 ?>
10
11 <h1><?php esc_html_e( 'Setup complete', 'convertkit' ); ?></h1>
12 <p>
13 <?php
14 printf(
15 '%s <code>%s</code>',
16 esc_html__( 'You can access the landing page at', 'convertkit' ),
17 esc_url( get_permalink( $this->result ) )
18 );
19 ?>
20 </p>
21
22 <div class="convertkit-setup-wizard-grid">
23 <div>
24 <a href="<?php echo esc_url( get_permalink( $this->result ) ); ?>" class="button button-primary button-hero">
25 <?php esc_html_e( 'View landing page', 'convertkit' ); ?>
26 </a>
27 <span class="description"><?php esc_html_e( 'Exit the wizard and view the landing page.', 'convertkit' ); ?></span>
28 </div>
29
30 <div>
31 <a href="<?php echo esc_url( admin_url( 'edit.php?post_type=page' ) ); ?>" class="button button-primary button-hero">
32 <?php esc_html_e( 'Exit', 'convertkit' ); ?>
33 </a>
34 <span class="description"><?php esc_html_e( 'Exit the wizard and load the WordPress Pages screen.', 'convertkit' ); ?></span>
35 </div>
36 </div>
37