PluginProbe ʕ •ᴥ•ʔ
Kubio AI Page Builder / 2.8.3
Kubio AI Page Builder v2.8.3
2.8.4 2.8.3 2.8.2 2.8.1 trunk 1.0.0 1.0.1 1.1.0 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.7.0 1.7.1 1.7.2 1.7.3 1.8.0 1.8.1 1.8.2 1.9.0 2.0.0 2.1.1 2.1.2 2.1.3 2.2.0 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.3.3 2.3.4 2.4.0 2.4.1 2.4.2 2.4.3 2.4.5 2.5.0 2.5.1 2.5.2 2.5.3 2.6.0 2.6.1 2.6.2 2.6.3 2.6.5 2.6.6 2.6.7 2.7.0 2.7.1 2.7.2 2.7.3 2.8.0
kubio / lib / admin-pages / main-page / upgrade-pro.php
kubio / lib / admin-pages / main-page Last commit date
demo-sites.php 1 year ago get-started.php 2 years ago upgrade-pro.php 1 year ago website-starter.php 6 days ago
upgrade-pro.php
85 lines
1 <?php
2
3 $kubio_upgrade_url = kubio_get_site_url_for(
4 'upgrade',
5 array(
6 'source' => 'upgrade',
7 'content' => 'no-license',
8 'upgrade_key' => apply_filters( 'kubio/upgrade-key', '' ),
9 )
10 );
11
12 ?>
13 <div class="tab-page kubio-upgrade-to-pro-page">
14 <div class="limited-width">
15 <div class="kubio-admin-page-section">
16 <div class="kubio-admin-page-section-content">
17
18
19 <div class="kubio-upgrade-to-pro-columns">
20 <div class="kubio-upgrade-to-pro-upgrade-column">
21 <p>
22 <span class="kubio-text-primary kubio-text-700"><?php esc_html_e( 'Thank you for your interest in Kubio!', 'kubio' ); ?></span>
23 <?php esc_html_e( 'Upgrading to Kubio PRO gives you access to advanced features and tools to create a truly professional website—effortlessly.', 'kubio' ); ?>
24 </p>
25 <div>
26 <h3><?php esc_html_e( 'How to Upgrade in 3 Simple Steps', 'kubio' ); ?></h3>
27 <ol>
28 <li>
29 <?php
30 printf(
31 // translators: %s: Upgrade to Kubio PRO link.
32 esc_html__( '%s - Select the plan that fits your needs.', 'kubio' ),
33 '<a href="' . esc_url( $kubio_upgrade_url ) . '" target="_blank" class="kubio-text-primary kubio-text-700">' . esc_html__( 'Purchase a Kubio PRO License', 'kubio' ) . '</a>'
34 );
35 ?>
36 </li>
37 <li>
38 <?php
39 printf(
40 // translators: %s: Download the Kubio PRO Plugin link.
41 esc_html__( '%s - A download link will be provided after purchase.', 'kubio' ),
42 '<strong>' . esc_html__( 'Download the Kubio PRO Plugin', 'kubio' ) . '</strong>'
43 );
44 ?>
45 </li>
46 <li>
47 <?php
48 printf(
49 // Translators: %1$s: Install & Activate, %2$s: Add New.
50 esc_html__( '%1$s - Upload the ZIP file via WordPress > Plugins > %2$s, then enter your license key to activate PRO features instantly.', 'kubio' ),
51 '<strong>' . esc_html__( 'Install & Activate', 'kubio' ) . '</strong>',
52 '<a href="' . esc_url( admin_url( 'plugin-install.php' ) ) . '" target="_blank" class="kubio-text-primary kubio-text-700">' . esc_html__( 'Add New', 'kubio' ) . '</a>'
53 );
54
55 ?>
56 </li>
57 </ol>
58 </div>
59
60 <div class="upgrade-to-pro-button">
61 <a href="<?php echo esc_url( $kubio_upgrade_url ); ?>" target="_blank" class="button button-primary button-hero">
62 <?php esc_html_e( 'Upgrade to Kubio PRO', 'kubio' ); ?>
63 </a>
64 </div>
65 </div>
66 <div class="kubio-upgrade-to-pro-features-column" style="background-image: url(<?php echo esc_url( kubio_url( 'static/admin-pages/upgrade-side-background.jpg' ) ); ?>) ;">
67 <h3><?php esc_html_e( 'Why Choose Kubio PRO?', 'kubio' ); ?></h3>
68 <p><?php esc_html_e( 'Upgrade now and enjoy the full power of Kubio PRO!', 'kubio' ); ?></p>
69 <ul class="ul-disc">
70 <li><?php echo wp_kses( __( '<strong>AI-Powered Website Creation</strong> - Instantly generate pages, images, and text.', 'kubio' ), array( 'strong' => array() ) ); ?></li>
71 <li><?php echo wp_kses( __( '<strong>50+ Advanced Blocks</strong> - Add sliders, pricing tables, carousels, and more.', 'kubio' ), array( 'strong' => array() ) ); ?></li>
72 <li><?php echo wp_kses( __( '<strong>340+ Pre-Designed Sections</strong> - Choose from professionally crafted layouts for faster design.', 'kubio' ), array( 'strong' => array() ) ); ?></li>
73 <li><?php echo wp_kses( __( '<strong>Multiple Headers & Footers</strong> - Fully customize headers, footers, and templates.', 'kubio' ), array( 'strong' => array() ) ); ?></li>
74 <li><?php echo wp_kses( __( '<strong>Premium Support & Updates</strong> - We got you covered with priority support and continuous enhancements.', 'kubio' ), array( 'strong' => array() ) ); ?></li>
75 </ul>
76 </div>
77
78 </div>
79
80
81 </div>
82 </div>
83 </div>
84 </div>
85