PluginProbe
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor / 3.16.3
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor v3.16.3
4.0.3 4.0.2 4.0.1 4.0.0 3.16.6 3.16.5 3.16.4 3.16.3 3.16.2 3.16.1 3.16.0 3.15.9 3.9.9 3.9.5 3.9.6 3.9.7 3.9.8 1.1.7 1.1.8 1.1.9 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 All 341 releases
profile-builder / admin / setup-wizard / view-tab-next.php

view-tab-next.php in User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor 3.16.3, at admin/setup-wizard/view-tab-next.php

42 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
2
3 <h3><?php esc_html_e( 'You’re all setup and ready to go', 'profile-builder' ); ?></h3>
4 <p class="cozmoslabs-description"><?php esc_html_e( 'Profile Builder is almost ready to run your user registration and login.', 'profile-builder' ); ?></p>
5 <p class="cozmoslabs-description"><?php esc_html_e( 'You can always change these settings from the plugin settings page.', 'profile-builder' ); ?></p>
6
7 <div class="wppb-setup-next">
8
9 <?php
10 $hide_newsletter = get_user_meta( get_current_user_id(), 'wppb_setup_wizard_newsletter', true );
11
12 if( empty( $hide_newsletter ) ) : ?>
13 <div class="wppb-setup-newsletter">
14 <p>
15 <?php esc_html_e( 'Get valuable insights, tips, and strategies on how to create, grow and monetize your own membership and community websites with WordPress.', 'profile-builder' ) ?>
16 </p>
17
18 <div class="wppb-setup-newsletter__form">
19 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
20 <path d="M18 6.75H6C5.30964 6.75 4.75 7.30964 4.75 8V16C4.75 16.6904 5.30964 17.25 6 17.25H18C18.6904 17.25 19.25 16.6904 19.25 16V8C19.25 7.30964 18.6904 6.75 18 6.75Z" stroke="#757575" stroke-width="1.5" />
21 <path d="M5 7L12 13L19 7" stroke="#757575" stroke-width="1.5" />
22 </svg>
23
24 <input type="email" name="email" value="<?php echo esc_html( get_option( 'admin_email' ) ) ?>">
25
26 <a class="button button-secondary" href="#"><?php esc_html_e( 'Yes Please!', 'profile-builder' ) ?></a>
27 </div>
28
29 <div class="wppb-setup-newsletter__success">
30 <?php esc_html_e( 'Please check your email to confirm the subscription.', 'profile-builder' ) ?>
31 </div>
32
33 <input type="hidden" id="wppb_nonce" name="wppb_nonce" value="<?php echo esc_attr( wp_create_nonce( 'dismiss_setup_wizard_newsletter_subscribe' ) ); ?>" />
34 </div>
35 <?php endif; ?>
36
37 <?php $this->output_progress_steps(); ?>
38
39 <div class="wppb-setup-form-button">
40 <a class="button primary button-primary button-hero" href="<?php echo esc_url( admin_url( 'admin.php?page=profile-builder-dashboard' ) ); ?>"><?php esc_html_e( 'Continue to Your Profile Builder Dashboard', 'profile-builder' ); ?></a>
41 </div>
42 </div>