PluginProbe
Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider & Blog Layout Widgets / 4.1.8
Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider & Blog Layout Widgets v4.1.8
4.5.4 4.2.1 4.2.2 4.2.3 4.5.0 4.5.2 4.5.3 4.2.0 4.1.18 4.1.17 4.1.16 4.1.15 4.1.14 4.1.13 4.1.12 4.1.11 4.1.10 4.1.9 4.1.8 4.0.9 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 All 146 releases
ultimate-post-kit / includes / setup-wizard / views / welcome.php

welcome.php in Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider & Blog Layout Widgets 4.1.8, at includes/setup-wizard/views/welcome.php

56 lines 2.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Welcome Step
4 */
5
6 namespace UltimatePostKit\SetupWizard;
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit;
10 }
11
12 ?>
13
14 <div class="bdt-wizard-step bdt-text-center active" data-step="welcome">
15 <div class="bdt-welcome-header">
16 <div class="bdt-logo-container">
17 <img src="<?php echo BDTUPK_ASSETS_URL . 'images/logo.svg'; ?>" alt="Ultimate Post Kit Logo" class="bdt-logo">
18 </div>
19 <h2><?php esc_html_e( 'Welcome to Ultimate Post Kit', 'ultimate-post-kit' ); ?></h2>
20 <p><?php esc_html_e( 'Thank you for choosing Ultimate Post Kit, a leading addon that provides a total web design solution for you. This quick setup wizard will help you configure the basic settings and get you started.', 'ultimate-post-kit' ); ?></p>
21 </div>
22
23 <div class="bdt-welcome-features">
24 <div class="bdt-features-grid">
25 <div class="bdt-feature-item">
26 <div class="bdt-feature-icon">
27 <span class="dashicons dashicons-admin-customizer"></span>
28 </div>
29 <h3><?php esc_html_e( '100+ Widgets', 'ultimate-post-kit' ); ?></h3>
30 <p><?php esc_html_e( 'Powerful elements for unlimited design possibilities', 'ultimate-post-kit' ); ?></p>
31 </div>
32 <div class="bdt-feature-item">
33 <div class="bdt-feature-icon">
34 <span class="dashicons dashicons-layout"></span>
35 </div>
36 <h3><?php esc_html_e( 'Ready Templates', 'ultimate-post-kit' ); ?></h3>
37 <p><?php esc_html_e( 'Professional templates to jumpstart your projects', 'ultimate-post-kit' ); ?></p>
38 </div>
39 <div class="bdt-feature-item">
40 <div class="bdt-feature-icon">
41 <span class="dashicons dashicons-performance"></span>
42 </div>
43 <h3><?php esc_html_e( 'Fast & Optimized', 'ultimate-post-kit' ); ?></h3>
44 <p><?php esc_html_e( 'Built with performance in mind for lightning-fast websites', 'ultimate-post-kit' ); ?></p>
45 </div>
46 </div>
47 </div>
48
49 <div class="bdt-wizard-navigation">
50 <button class="bdt-button bdt-button-primary bdt-wizard-next" data-step="features">
51 <?php esc_html_e( 'Get Started', 'ultimate-post-kit' ); ?>
52 <span><i class="dashicons dashicons-arrow-right-alt"></i></span>
53 </button>
54 </div>
55 </div>
56