step-01.php
8 months ago
step-02.php
1 week ago
step-03.php
1 week ago
step-04.php
10 months ago
step-05.php
6 months ago
step-06.php
1 year ago
step-03.php
189 lines
| 1 | <div class="ekit-onboard-main-header"> |
| 2 | <h1 class="ekit-onboard-main-header--title"><strong><?php echo esc_html__( 'Build A Complete WordPress Website', 'elementskit-lite' ); ?></strong></h1> |
| 3 | <p class="ekit-onboard-main-header--description"><?php echo esc_html__( 'A fleet of plugins with all types of features you will need for WordPress.', 'elementskit-lite' ); ?></p> |
| 4 | </div> |
| 5 | <div class="ekit-onboard-plugin-list"> |
| 6 | <div class="attr-row"> |
| 7 | <?php |
| 8 | $pluginStatus = \ElementsKit_Lite\Libs\Framework\Classes\Plugin_Status::instance(); |
| 9 | $plugins = \ElementsKit_Lite\Libs\Framework\Attr::instance()->utils->get_option( 'settings', array() ); |
| 10 | |
| 11 | $elementskit = $pluginStatus->get_status( 'elementskit-lite/elementskit-lite.php' ); |
| 12 | // $dynamic_cpt = $pluginStatus->get_status( 'rox-dynamic-cpt-fields-engine/rox-dynamic-cpt-fields-engine.php' ); |
| 13 | // $appointment_booking = $pluginStatus->get_status( 'rox-appointment-booking/rox-appointment-booking.php' ); |
| 14 | $getgenie = $pluginStatus->get_status( 'getgenie/getgenie.php' ); |
| 15 | $shopengine = $pluginStatus->get_status( 'shopengine/shopengine.php' ); |
| 16 | $metform = $pluginStatus->get_status( 'metform/metform.php' ); |
| 17 | $emailkit = $pluginStatus->get_status( 'emailkit/EmailKit.php' ); |
| 18 | $popupkit = $pluginStatus->get_status( 'popup-builder-block/popup-builder-block.php' ); |
| 19 | // $social = $pluginStatus->get_status( 'wp-social/wp-social.php' ); |
| 20 | |
| 21 | $gutenkit = $pluginStatus->get_status( 'gutenkit-blocks-addon/gutenkit-blocks-addon.php' ); |
| 22 | // $tablekit = $pluginStatus->get_status( 'table-builder-block/table-builder-block.php' ); |
| 23 | |
| 24 | $woocommerce = $pluginStatus->get_status( 'woocommerce/woocommerce.php' ); |
| 25 | $shopengine_pre_check = $woocommerce['status'] == 'activated' ? '' : ''; |
| 26 | ?> |
| 27 | <!-- <div class="attr-col-lg-3"> |
| 28 | <div class="ekit-onboard-single-plugin <?php echo $dynamic_cpt['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 29 | <label> |
| 30 | <div class="ekit-onboard-single-plugin--header"> |
| 31 | <h3>Dynamic CPT Fields</3> |
| 32 | </div> |
| 33 | <?php if($dynamic_cpt['status'] !== 'activated') : ?> |
| 34 | <div class="ekit-onboard-single-plugin--checkbox-wrapper"> |
| 35 | <input type="checkbox" class="ekit-onboard-single-plugin--input" value="rox-dynamic-cpt-fields-engine/rox-dynamic-cpt-fields-engine.php" name="our_plugins[]"> |
| 36 | </div> |
| 37 | <?php endif; ?> |
| 38 | <p class="ekit-onboard-single-plugin--description"> |
| 39 | <?php echo esc_html__('Build and manage custom CPT fields for WordPress with AI and zero coding.', 'elementskit-lite' ); ?> |
| 40 | </p> |
| 41 | </label> |
| 42 | </div> |
| 43 | </div> |
| 44 | <div class="attr-col-lg-3"> |
| 45 | <div class="ekit-onboard-single-plugin <?php echo $appointment_booking['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 46 | <label> |
| 47 | <div class="ekit-onboard-single-plugin--header"> |
| 48 | <h3>Appointment Booking</3> |
| 49 | </div> |
| 50 | <?php if($appointment_booking['status'] !== 'activated') : ?> |
| 51 | <div class="ekit-onboard-single-plugin--checkbox-wrapper"> |
| 52 | <input type="checkbox" class="ekit-onboard-single-plugin--input" value="rox-appointment-booking/rox-appointment-booking.php" name="our_plugins[]"> |
| 53 | </div> |
| 54 | <?php endif; ?> |
| 55 | <p class="ekit-onboard-single-plugin--description"> |
| 56 | <?php echo esc_html__( 'Manage schedules, agents, and payments, all from one dashboard in WordPress.', 'elementskit-lite' ); ?> |
| 57 | </p> |
| 58 | </label> |
| 59 | </div> |
| 60 | </div> --> |
| 61 | <div class="attr-col-lg-3"> |
| 62 | <div class="ekit-onboard-single-plugin <?php echo $shopengine['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 63 | <label> |
| 64 | <div class="ekit-onboard-single-plugin--header"> |
| 65 | <h3>WooCommerce Builder</3> |
| 66 | </div> |
| 67 | <?php if($shopengine['status'] !== 'activated') : ?> |
| 68 | <div class="ekit-onboard-single-plugin--checkbox-wrapper"> |
| 69 | <input type="checkbox" class="ekit-onboard-single-plugin--input" value="shopengine/shopengine.php" name="our_plugins[]" <?php echo esc_attr($shopengine_pre_check); ?>> |
| 70 | </div> |
| 71 | <?php endif; ?> |
| 72 | <p class="ekit-onboard-single-plugin--description"> |
| 73 | <?php echo esc_html__( 'The ultimate solution to build a complete WooCommerce site in Elementor.', 'elementskit-lite' ); ?> |
| 74 | </p> |
| 75 | </label> |
| 76 | </div> |
| 77 | </div> |
| 78 | <div class="attr-col-lg-3"> |
| 79 | <div class="ekit-onboard-single-plugin <?php echo $metform['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 80 | <label> |
| 81 | <div class="ekit-onboard-single-plugin--header"> |
| 82 | <h3>Form Builder</3> |
| 83 | </div> |
| 84 | <?php if($metform['status'] !== 'activated') : ?> |
| 85 | <div class="ekit-onboard-single-plugin--checkbox-wrapper"> |
| 86 | <input type="checkbox" class="ekit-onboard-single-plugin--input" value="metform/metform.php" name="our_plugins[]"> |
| 87 | </div> |
| 88 | <?php endif; ?> |
| 89 | <p class="ekit-onboard-single-plugin--description"> |
| 90 | <?php echo esc_html__( 'Most flexible form builder for Elementor with a wide range of features.', 'elementskit-lite' ); ?> |
| 91 | </p> |
| 92 | </label> |
| 93 | </div> |
| 94 | </div> |
| 95 | <!-- Gutenberg plugins --> |
| 96 | <div class="attr-col-lg-3"> |
| 97 | <div class="ekit-onboard-single-plugin <?php echo $gutenkit['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 98 | <label> |
| 99 | <div class="ekit-onboard-single-plugin--header"> |
| 100 | <h3>Gutenberg Blocks</3> |
| 101 | </div> |
| 102 | <?php if($gutenkit['status'] !== 'activated') : ?> |
| 103 | <div class="ekit-onboard-single-plugin--checkbox-wrapper"> |
| 104 | <input type="checkbox" class="ekit-onboard-single-plugin--input" value="gutenkit-blocks-addon/gutenkit-blocks-addon.php" name="our_plugins[]"> |
| 105 | </div> |
| 106 | <?php endif; ?> |
| 107 | <p class="ekit-onboard-single-plugin--description"> |
| 108 | <?php echo esc_html__( 'Enhance block capability with page builder features & templates for Gutenberg.', 'elementskit-lite' ); ?> |
| 109 | </p> |
| 110 | </label> |
| 111 | </div> |
| 112 | </div> |
| 113 | <div class="attr-col-lg-3"> |
| 114 | <div class="ekit-onboard-single-plugin <?php echo $popupkit['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 115 | <label> |
| 116 | <div class="ekit-onboard-single-plugin--header"> |
| 117 | <h3>Popup Builder</3> |
| 118 | </div> |
| 119 | <?php if($popupkit['status'] !== 'activated') : ?> |
| 120 | <div class="ekit-onboard-single-plugin--checkbox-wrapper"> |
| 121 | <input type="checkbox" class="ekit-onboard-single-plugin--input" value="popup-builder-block/popup-builder-block.php" name="our_plugins[]"> |
| 122 | </div> |
| 123 | <?php endif; ?> |
| 124 | <p class="ekit-onboard-single-plugin--description"> |
| 125 | <?php echo esc_html__( 'Design popups that convert, right in your WordPress dashboard.', 'elementskit-lite' ); ?> |
| 126 | </p> |
| 127 | </label> |
| 128 | </div> |
| 129 | </div> |
| 130 | <div class="attr-col-lg-3"> |
| 131 | <div class="ekit-onboard-single-plugin <?php echo $emailkit['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 132 | <label> |
| 133 | <div class="ekit-onboard-single-plugin--header"> |
| 134 | <h3>Email Customizer</3> |
| 135 | </div> |
| 136 | <?php if($emailkit['status'] !== 'activated') : ?> |
| 137 | <div class="ekit-onboard-single-plugin--checkbox-wrapper"> |
| 138 | <input type="checkbox" class="ekit-onboard-single-plugin--input" value="emailkit/EmailKit.php" name="our_plugins[]"> |
| 139 | </div> |
| 140 | <?php endif; ?> |
| 141 | <p class="ekit-onboard-single-plugin--description"> |
| 142 | <?php echo esc_html__( 'Drag-and-drop email builder for WooCommerce & WordPress.', 'elementskit-lite' ); ?> |
| 143 | </p> |
| 144 | </label> |
| 145 | </div> |
| 146 | </div> |
| 147 | <div class="attr-col-lg-3"> |
| 148 | <div class="ekit-onboard-single-plugin <?php echo $getgenie['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 149 | <label> |
| 150 | <div class="ekit-onboard-single-plugin--header"> |
| 151 | <h3>AI Content & SEO Tool</3> |
| 152 | </div> |
| 153 | <?php if($getgenie['status'] !== 'activated') : ?> |
| 154 | <div class="ekit-onboard-single-plugin--checkbox-wrapper"> |
| 155 | <input type="checkbox" class="ekit-onboard-single-plugin--input" value="getgenie/getgenie.php" name="our_plugins[]"> |
| 156 | </div> |
| 157 | <?php endif; ?> |
| 158 | <p class="ekit-onboard-single-plugin--description"> |
| 159 | <?php echo esc_html__( 'Find top keywords, create winning content & track SEO results with AI.', 'elementskit-lite' ); ?> |
| 160 | </p> |
| 161 | </label> |
| 162 | </div> |
| 163 | </div> |
| 164 | </div> |
| 165 | </div> |
| 166 | <div class="ekit-onboard-pagination"> |
| 167 | <a class="ekit-onboard-btn ekit-onboard-pagi-btn prev" href="#"> |
| 168 | <i class="icon icon-left-arrow"></i> |
| 169 | <?php echo esc_html__( 'Back', 'elementskit-lite' ); ?> |
| 170 | </a> |
| 171 | <a class="ekit-onboard-btn ekit-onboard-pagi-btn next continue" href="#"> |
| 172 | <?php echo esc_html__( 'Continue', 'elementskit-lite' ); ?> |
| 173 | </a> |
| 174 | <a |
| 175 | class="ekit-onboard-btn ekit-onboard-pagi-btn next" |
| 176 | href="#" |
| 177 | onclick="document.querySelectorAll('.ekit-onboard-plugin-list input[type=checkbox]').forEach(cb => cb.checked = true);" |
| 178 | > |
| 179 | <?php echo esc_html__( 'Unlock All & Continue', 'elementskit-lite' ); ?> |
| 180 | </a> |
| 181 | </div> |
| 182 | <div class="ekit-onboard-shapes" style="display: none;"> |
| 183 | <img src="<?php echo esc_url(self::get_url()); ?>assets/images/onboard/shape-06.png" alt="" class="shape-06"> |
| 184 | <img src="<?php echo esc_url(self::get_url()); ?>assets/images/onboard/shape-10.png" alt="" class="shape-10"> |
| 185 | <img src="<?php echo esc_url(self::get_url()); ?>assets/images/onboard/shape-11.png" alt="" class="shape-11"> |
| 186 | <img src="<?php echo esc_url(self::get_url()); ?>assets/images/onboard/shape-12.png" alt="" class="shape-12"> |
| 187 | <img src="<?php echo esc_url(self::get_url()); ?>assets/images/onboard/shape-13.png" alt="" class="shape-13"> |
| 188 | </div> |
| 189 |