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 / view.php

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

41 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * View create funnel
4 *
5 * @package
6 */
7 $is_pro_active = false;
8 ?>
9 <div class="wpfnl">
10 <div id="templates-library"></div>
11 <div class="wpfnl-dashboard">
12 <nav class="wpfnl-dashboard__nav">
13 <?php require_once WPFNL_DIR . '/admin/partials/dashboard-nav.php'; ?>
14 </nav>
15
16 <div class="dashboard-nav__content">
17 <div class="wpfnl-dashboard__header create-funnel__header">
18 <div class="title">
19 <h1><?php echo __('Create A Funnel', 'wpfnl'); ?></h1>
20 <span class="subtitle"><?php echo __('Choose a template to start funnel', 'wpfnl'); ?></span>
21 </div>
22
23 <a href="#" class="btn-default">
24 <?php
25 require WPFNL_DIR . '/admin/partials/icons/play-icon.php';
26 echo __('How to use this funnel', 'wpfnl');
27 ?>
28 </a>
29 </div>
30 <!-- /create-funnel__header -->
31
32 <div id="templates-library">
33
34 </div>
35 <!-- /wpfnl-create-funnel__inner-content -->
36
37 </div>
38 </div>
39 </div>
40 <!-- /.wpfnl -->
41