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 / settings / views / other-integration-setting.php

other-integration-setting.php in WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell 3.13.1, at admin/modules/settings/views/other-integration-setting.php

57 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * View Events & Other Integrations
4 *
5 * @package
6 */
7 ?>
8 <div class="settings-tab-container">
9 <ul class="wpfnl-general-settings-tab-nav">
10 <li class="inner-tab active" data-tab="tab-facebook-pixel"><?php esc_html_e('Facebook Pixel', 'wpfnl'); ?></li>
11 <li class="inner-tab" data-tab="tab-gtm"><?php esc_html_e('Google Tag Manager', 'wpfnl'); ?></li>
12 <li class="inner-tab" data-tab="tab-google-maps"><?php esc_html_e('Google Maps API', 'wpfnl'); ?></li>
13 </ul>
14 </div>
15
16 <!-- Facebook Pixel Tab -->
17 <div class="wpfnl-tab-content active" id="tab-facebook-pixel">
18 <?php do_action('wpfunnels_before_facebook_pixel_settings'); ?>
19 <?php require WPFNL_DIR . '/admin/modules/settings/views/facebook-pixel-settings.php'; ?>
20 <?php do_action('wpfunnels_after_facebook_pixel_settings'); ?>
21 </div>
22
23 <!-- Google Tag Manager Tab -->
24 <div class="wpfnl-tab-content" id="tab-gtm">
25 <?php do_action('wpfunnels_before_gtm_settings'); ?>
26 <?php require WPFNL_DIR . '/admin/modules/settings/views/gtm-settings.php'; ?>
27 <?php do_action('wpfunnels_after_gtm_settings'); ?>
28 </div>
29
30 <!-- Google Maps API Tab -->
31 <div class="wpfnl-tab-content" id="tab-google-maps">
32 <div class="wpfnl-box google-place-api-settings">
33 <div class="wpfnl-field-wrapper google-place-api">
34 <label>
35 <?php esc_html_e('Google Map API Key', 'wpfnl'); ?>
36 <span class="wpfnl-tooltip">
37 <?php require WPFNL_DIR . '/admin/partials/icons/settings-tooltip-icon.php'; ?>
38 <p>
39 <?php esc_html_e('Connect with Google Autocomplete to allow customers to go through checkout faster. When a customer types in the Street address, Google will suggest a full address that the customer can add with one click.', 'wpfnl'); ?>
40 </p>
41 </span>
42 </label>
43 <div class="wpfnl-fields">
44 <input type="password" name="wpfnl-google-map-api" id="wpfnl-google-map-api-key" value="<?php echo $this->google_map_api_key; ?>" />
45 <div class="password-icon">
46 <span class="eye-regular toggle-eye-icon">
47 <?php require WPFNL_DIR . '/admin/partials/icons/eye-regular.php'; ?>
48 </span>
49 <span class="eye-slash-regular toggle-eye-icon hide-eye-icon">
50 <?php require WPFNL_DIR . '/admin/partials/icons/eye-slash-regular.php'; ?>
51 </span>
52 </div>
53 </div>
54 </div>
55 </div>
56 </div>
57