PluginProbe
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell / 3.13.1
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell v3.13.1
3.13.1 3.13.0 3.12.13 3.12.12 3.12.11 3.12.10 3.12.9 3.12.8 3.12.7 3.12.6 3.12.5 3.12.4 3.12.3 3.12.1 3.12.2 3.12.0 3.11.1 3.11.0 3.10.9 3.10.8 3.10.7 3.10.6 2.8.16 2.8.17 2.8.18 All 259 releases
wpfunnels / admin / modules / createFunnel / views / builder-not-activated.php

builder-not-activated.php in WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell 3.13.1, at admin/modules/createFunnel/views/builder-not-activated.php

59 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * View builder not active
4 *
5 * @package
6 */
7 $is_pro_active = false;
8 ?>
9
10
11 <div class="wpfnl">
12 <div id="templates-library"></div>
13 <div class="wpfnl-dashboard">
14 <nav class="wpfnl-dashboard__nav">
15 <?php require_once WPFNL_DIR . '/admin/partials/dashboard-nav.php'; ?>
16 </nav>
17
18 <div class="dashboard-nav__content">
19 <div class="wpfnl-dashboard__header create-funnel__header">
20 <div class="title">
21 <h1><?php echo __('Create A Funnel', 'wpfnl'); ?></h1>
22 <span class="subtitle"><?php echo __('Choose a template to start funnel', 'wpfnl'); ?></span>
23 </div>
24
25 <a href="#" class="btn-default">
26 <?php
27 require WPFNL_DIR . '/admin/partials/icons/play-icon.php';
28 echo __('How to use this funnel', 'wpfnl');
29 ?>
30 </a>
31 </div>
32 <!-- /create-funnel__header -->
33
34 <div class="wpfnl-create-funnel__inner-content">
35 <div class="wpfnl-create-funnel__template-wrapper">
36
37 <div class="create-funnel__single-template create-funnel__from-scratch">
38 <p>Please activate <strong><?php echo ucfirst($this->builder); ?></strong> to see the templates. </p>
39 </div>
40
41 <div class="create-funnel__single-template create-funnel__from-scratch">
42 <a href="#" id="wpfnl-create-funnel" class="btn-default">
43 <?php echo __('Start From scratch', 'wpfnl'); ?>
44 </a>
45 <span class="helper-txt"><?php echo __('User step by step to create you own funnel', 'wpfnl'); ?></span>
46 </div>
47 <!-- /create-funnel__single-template -->
48 </div>
49 <!-- /wpfnl-create-funnel__template-wrapper -->
50
51 </div>
52 <!-- /wpfnl-create-funnel__inner-content -->
53
54 </div>
55 </div>
56
57 </div>
58 <!-- /.wpfnl -->
59