| 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 |
|