step-01.php
4 years ago
step-02.php
2 weeks ago
step-03.php
2 weeks ago
step-04.php
3 years ago
step-05.php
2 weeks ago
step-06.php
2 weeks ago
step-03.php
191 lines
| 1 | <div class="wslu-onboard-main-header"> |
| 2 | <h1 class="wslu-onboard-main-header--title"><strong><?php |
| 3 | |
| 4 | echo esc_html__('Take your website to the next level', 'wp-social'); ?></strong></h1> |
| 5 | <p class="wslu-onboard-main-header--description"><?php echo esc_html__('A fleet of plugins with all types of features you will need for WordPress.', 'wp-social'); ?></p> |
| 6 | </div> |
| 7 | |
| 8 | <div class="wslu-onboard-plugin-list"> |
| 9 | <div class="attr-row"> |
| 10 | <?php |
| 11 | $pluginStatus = \WP_Social\Lib\Onboard\Classes\Plugin_Status::instance(); |
| 12 | $plugins = \WP_Social\Lib\Onboard\Attr::instance()->utils->get_option('settings', []); |
| 13 | |
| 14 | $elementskit = $pluginStatus->get_status( 'elementskit-lite/elementskit-lite.php' ); |
| 15 | $getgenie = $pluginStatus->get_status( 'getgenie/getgenie.php' ); |
| 16 | $shopengine = $pluginStatus->get_status( 'shopengine/shopengine.php' ); |
| 17 | $metform = $pluginStatus->get_status( 'metform/metform.php' ); |
| 18 | $emailkit = $pluginStatus->get_status( 'emailkit/EmailKit.php' ); |
| 19 | $popupkit = $pluginStatus->get_status( 'popup-builder-block/popup-builder-block.php' ); |
| 20 | $review = $pluginStatus->get_status( 'wp-ultimate-review/wp-ultimate-review.php' ); |
| 21 | $social = $pluginStatus->get_status( 'wp-social/wp-social.php' ); |
| 22 | |
| 23 | $gutenkit = $pluginStatus->get_status( 'gutenkit-blocks-addon/gutenkit-blocks-addon.php' ); |
| 24 | $tablekit = $pluginStatus->get_status( 'table-builder-block/table-builder-block.php' ); |
| 25 | |
| 26 | $woocommerce = $pluginStatus->get_status( 'woocommerce/woocommerce.php' ); |
| 27 | // Show unchecked when WooCommerce is active but ShopEngine is deactivated |
| 28 | $shopengine_pre_check = ''; |
| 29 | ?> |
| 30 | <!-- 1. AI Content & SEO Tool (GetGenie) - First position --> |
| 31 | <div class="attr-col-lg-3"> |
| 32 | <div class="wslu-onboard-single-plugin <?php echo $getgenie['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 33 | <label> |
| 34 | <div class="wslu-onboard-single-plugin--header"> |
| 35 | <h3><?php echo esc_html__('AI Content & SEO Tool', 'wp-social'); ?></h3> |
| 36 | </div> |
| 37 | <?php if($getgenie['status'] !== 'activated') : ?> |
| 38 | <div class="wslu-onboard-single-plugin--checkbox-wrapper"> |
| 39 | <input type="checkbox" class="wslu-onboard-single-plugin--input" value="getgenie/getgenie.php" name="our_plugins[]"> |
| 40 | </div> |
| 41 | <?php endif; ?> |
| 42 | <p class="wslu-onboard-single-plugin--description"> |
| 43 | <?php echo esc_html__('Find top keywords, create winning content & track SEO results with AI.', 'wp-social' ); ?> |
| 44 | </p> |
| 45 | </label> |
| 46 | </div> |
| 47 | </div> |
| 48 | <!-- 2. Page Builder Elements (ElementsKit) - Second position --> |
| 49 | <div class="attr-col-lg-3"> |
| 50 | <div class="wslu-onboard-single-plugin <?php echo $elementskit['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 51 | <label> |
| 52 | <div class="wslu-onboard-single-plugin--header"> |
| 53 | <h3><?php echo esc_html__('Page Builder Elements', 'wp-social'); ?></h3> |
| 54 | </div> |
| 55 | <?php if($elementskit['status'] !== 'activated') : ?> |
| 56 | <div class="wslu-onboard-single-plugin--checkbox-wrapper"> |
| 57 | <input type="checkbox" class="wslu-onboard-single-plugin--input" value="elementskit-lite/elementskit-lite.php" name="our_plugins[]"> |
| 58 | </div> |
| 59 | <?php endif; ?> |
| 60 | <p class="wslu-onboard-single-plugin--description"> |
| 61 | <?php echo esc_html__( 'Best companion for Elementor with top widgets and templates.', 'wp-social' ); ?> |
| 62 | </p> |
| 63 | </label> |
| 64 | </div> |
| 65 | </div> |
| 66 | <!-- 3. Form Builder (MetForm) - Third position --> |
| 67 | <div class="attr-col-lg-3"> |
| 68 | <div class="wslu-onboard-single-plugin <?php echo $metform['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 69 | <label> |
| 70 | <div class="wslu-onboard-single-plugin--header"> |
| 71 | <h3><?php echo esc_html__('Form Builder', 'wp-social'); ?></h3> |
| 72 | </div> |
| 73 | <?php if($metform['status'] !== 'activated') : ?> |
| 74 | <div class="wslu-onboard-single-plugin--checkbox-wrapper"> |
| 75 | <input type="checkbox" class="wslu-onboard-single-plugin--input" value="metform/metform.php" name="our_plugins[]"> |
| 76 | </div> |
| 77 | <?php endif; ?> |
| 78 | <p class="wslu-onboard-single-plugin--description"> |
| 79 | <?php echo esc_html__( 'Most flexible drag-and-drop form builder for WordPress.', 'wp-social' ); ?> |
| 80 | </p> |
| 81 | </label> |
| 82 | </div> |
| 83 | </div> |
| 84 | <!-- 4. WooCommerce Builder (ShopEngine) - Fourth position --> |
| 85 | <div class="attr-col-lg-3"> |
| 86 | <div class="wslu-onboard-single-plugin <?php echo $shopengine['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 87 | <label> |
| 88 | <div class="wslu-onboard-single-plugin--header"> |
| 89 | <h3><?php echo esc_html__('WooCommerce Builder', 'wp-social'); ?></h3> |
| 90 | </div> |
| 91 | <?php if($shopengine['status'] !== 'activated') : ?> |
| 92 | <div class="wslu-onboard-single-plugin--checkbox-wrapper"> |
| 93 | <input type="checkbox" class="wslu-onboard-single-plugin--input" value="shopengine/shopengine.php" name="our_plugins[]" <?php echo esc_attr($shopengine_pre_check); ?>> |
| 94 | </div> |
| 95 | <?php endif; ?> |
| 96 | <p class="wslu-onboard-single-plugin--description"> |
| 97 | <?php echo esc_html__( 'The ultimate solution to build a complete WooCommerce site in Elementor.', 'wp-social' ); ?> |
| 98 | </p> |
| 99 | </label> |
| 100 | </div> |
| 101 | </div> |
| 102 | <!-- 5. Email Customizer (EmailKit) - Fifth position --> |
| 103 | <div class="attr-col-lg-3"> |
| 104 | <div class="wslu-onboard-single-plugin <?php echo $emailkit['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 105 | <label> |
| 106 | <div class="wslu-onboard-single-plugin--header"> |
| 107 | <h3><?php echo esc_html__('Email Customizer', 'wp-social'); ?></h3> |
| 108 | </div> |
| 109 | <?php if($emailkit['status'] !== 'activated') : ?> |
| 110 | <div class="wslu-onboard-single-plugin--checkbox-wrapper"> |
| 111 | <input type="checkbox" class="wslu-onboard-single-plugin--input" value="emailkit/EmailKit.php" name="our_plugins[]"> |
| 112 | </div> |
| 113 | <?php endif; ?> |
| 114 | <p class="wslu-onboard-single-plugin--description"> |
| 115 | <?php echo esc_html__( 'Drag-and-drop email builder for WooCommerce & WordPress.', 'wp-social' ); ?> |
| 116 | </p> |
| 117 | </label> |
| 118 | </div> |
| 119 | </div> |
| 120 | <!-- 6. Popup Builder (PopupKit) - Sixth position --> |
| 121 | <div class="attr-col-lg-3"> |
| 122 | <div class="wslu-onboard-single-plugin <?php echo $popupkit['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 123 | <label> |
| 124 | <div class="wslu-onboard-single-plugin--header"> |
| 125 | <h3><?php echo esc_html__('Popup Builder', 'wp-social'); ?></h3> |
| 126 | </div> |
| 127 | <?php if($popupkit['status'] !== 'activated') : ?> |
| 128 | <div class="wslu-onboard-single-plugin--checkbox-wrapper"> |
| 129 | <input type="checkbox" class="wslu-onboard-single-plugin--input" value="popup-builder-block/popup-builder-block.php" name="our_plugins[]"> |
| 130 | </div> |
| 131 | <?php endif; ?> |
| 132 | <p class="wslu-onboard-single-plugin--description"> |
| 133 | <?php echo esc_html__( 'Design popups that convert, right in your WordPress dashboard.', 'wp-social' ); ?> |
| 134 | </p> |
| 135 | </label> |
| 136 | </div> |
| 137 | </div> |
| 138 | <!-- 7. Review Management (WP Ultimate Review) - Seventh position --> |
| 139 | <div class="attr-col-lg-3"> |
| 140 | <div class="wslu-onboard-single-plugin <?php echo $review['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 141 | <label> |
| 142 | <div class="wslu-onboard-single-plugin--header"> |
| 143 | <h3><?php echo esc_html__('Review Management', 'wp-social'); ?></h3> |
| 144 | </div> |
| 145 | <?php if($review['status'] !== 'activated') : ?> |
| 146 | <div class="wslu-onboard-single-plugin--checkbox-wrapper"> |
| 147 | <input type="checkbox" class="wslu-onboard-single-plugin--input" value="wp-ultimate-review/wp-ultimate-review.php" name="our_plugins[]"> |
| 148 | </div> |
| 149 | <?php endif; ?> |
| 150 | <p class="wslu-onboard-single-plugin--description"> |
| 151 | <?php echo esc_html__( 'Build credibility for your business with the all-in-one review plugin.', 'wp-social' ); ?> |
| 152 | </p> |
| 153 | </label> |
| 154 | </div> |
| 155 | </div> |
| 156 | <!-- 8. Gutenberg Blocks (GutenKit) - Eighth position --> |
| 157 | <div class="attr-col-lg-3"> |
| 158 | <div class="wslu-onboard-single-plugin <?php echo $gutenkit['status'] == 'activated' ? 'activated' : ''; ?>"> |
| 159 | <label> |
| 160 | <div class="wslu-onboard-single-plugin--header"> |
| 161 | <h3><?php echo esc_html__('Gutenberg Blocks', 'wp-social'); ?></h3> |
| 162 | </div> |
| 163 | <?php if($gutenkit['status'] !== 'activated') : ?> |
| 164 | <div class="wslu-onboard-single-plugin--checkbox-wrapper"> |
| 165 | <input type="checkbox" class="wslu-onboard-single-plugin--input" value="gutenkit-blocks-addon/gutenkit-blocks-addon.php" name="our_plugins[]"> |
| 166 | </div> |
| 167 | <?php endif; ?> |
| 168 | <p class="wslu-onboard-single-plugin--description"> |
| 169 | <?php echo esc_html__( 'Enhance block capability with page builder features & templates for Gutenberg.', 'wp-social' ); ?> |
| 170 | </p> |
| 171 | </label> |
| 172 | </div> |
| 173 | </div> |
| 174 | </div> |
| 175 | </div> |
| 176 | <div class="wslu-onboard-pagination"> |
| 177 | <div class="wslu-onboard-left"> |
| 178 | <a class="wslu-onboard-btn wslu-step-3-back-btn wslu-onboard-pagi-btn prev" href="#"><i class="icon xs-onboard-arrow-left"></i><?php echo esc_html__('Back', 'wp-social'); ?></a> |
| 179 | </div> |
| 180 | <div class="wslu-onboard-right"> |
| 181 | <a class="wslu-continue-button wslu-onboard-pagi-btn next" href="#"><?php echo esc_html__('Continue', 'wp-social'); ?></a> |
| 182 | <a class="wslu-onboard-btn wslu-onboard-pagi-btn wslu-onboard-select-all-next-btn next" href="#"><?php echo esc_html__('Unlock All & Continue', 'wp-social'); ?></a> |
| 183 | </div> |
| 184 | </div> |
| 185 | <div class="wslu-onboard-shapes"> |
| 186 | <img src="<?php echo esc_url(self::get_url()); ?>assets/images/onboard/shape-06.png" alt="" class="shape-06"> |
| 187 | <img src="<?php echo esc_url(self::get_url()); ?>assets/images/onboard/shape-10.png" alt="" class="shape-10"> |
| 188 | <img src="<?php echo esc_url(self::get_url()); ?>assets/images/onboard/shape-11.png" alt="" class="shape-11"> |
| 189 | <img src="<?php echo esc_url(self::get_url()); ?>assets/images/onboard/shape-12.png" alt="" class="shape-12"> |
| 190 | <img src="<?php echo esc_url(self::get_url()); ?>assets/images/onboard/shape-13.png" alt="" class="shape-13"> |
| 191 | </div> |