PluginProbe
WPBot – AI ChatBot for Live Support, Lead Generation, WordPress Automation, AI Services / 8.5.4
WPBot – AI ChatBot for Live Support, Lead Generation, WordPress Automation, AI Services v8.5.4
8.7.6 8.7.5 8.7.4 8.7.3 8.7.2 8.7.1 8.7.0 8.6.9 8.6.8 8.6.7 8.6.6 8.6.5 8.6.4 8.6.2 8.6.1 8.6.0 8.5.9 8.5.8 8.5.7 8.5.6 8.5.5 8.5.4 8.5.3 8.5.2 8.5.0 All 532 releases
chatbot / templates / template-00 / template.php

template.php in WPBot – AI ChatBot for Live Support, Lead Generation, WordPress Automation, AI Services 8.5.4, at templates/template-00/template.php

99 lines 5.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div id="wp-chatbot-ball-container" class="wp-chatbot-template-01">
2 <div class="wp-chatbot-container">
3 <div class="wp-chatbot-product-container">
4 <div class="wp-chatbot-product-details">
5 <div class="wp-chatbot-product-image-col">
6 <div id="wp-chatbot-product-image"></div>
7 </div>
8 <!--wp-chatbot-product-image-col-->
9 <div class="wp-chatbot-product-info-col">
10 <div class="wp-chatbot-product-reload"></div>
11 <div id="wp-chatbot-product-title" class="wp-chatbot-product-title"></div>
12 <div id="wp-chatbot-product-price" class="wp-chatbot-product-price"></div>
13 <div id="wp-chatbot-product-description" class="wp-chatbot-product-description"></div>
14 <div id="wp-chatbot-product-quantity" class="wp-chatbot-product-quantity"></div>
15 <div id="wp-chatbot-product-variable" class="wp-chatbot-product-variable"></div>
16 <div id="wp-chatbot-product-cart-button" class="wp-chatbot-product-cart-button"></div>
17 </div>
18 <!--wp-chatbot-product-info-col-->
19 <a href="#" class="wp-chatbot-product-close"></a>
20 </div>
21 <!-- wp-chatbot-product-details-->
22 </div>
23 <!-- wp-chatbot-product-container-->
24 <div id="wp-chatbot-board-container" class="wp-chatbot-board-container">
25 <div class="wp-chatbot-header">
26
27 <div class="wp-chatbot-header-welcome-text">
28
29
30 <div id="wp-chatbot-desktop-expand" title="<?php esc_attr_e('Expand', 'chatbot'); ?>"><span class="dashicons dashicons-fullscreen-alt"></span></div>
31
32 <?php
33 if (!defined('ABSPATH')) exit; // Exit if accessed directly
34 if (get_option('wp_chatbot_icon') == "custom.png") {
35 $wp_chatbot_custom_icon_path = (!empty(get_option('wp_chatbot_custom_icon_path'))) ? get_option('wp_chatbot_custom_icon_path') : QCLD_wpCHATBOT_IMG_URL . 'icon-1.png';
36
37 } else if (get_option('wp_chatbot_icon') != "custom.png") {
38 $wp_chatbot_custom_icon_path = QCLD_wpCHATBOT_IMG_URL . get_option('wp_chatbot_icon');
39 } else {
40 $wp_chatbot_custom_icon_path = QCLD_wpCHATBOT_IMG_URL . 'custom.png';
41 }
42 ?>
43 <img src="<?php echo esc_url($wp_chatbot_custom_icon_path); ?>"
44 alt="wpChatIcon" qcld_agent="<?php echo esc_url($wp_chatbot_custom_icon_path); ?>" >
45
46
47 </div>
48
49 <div class="wp-chatbot-header-icon-right">
50 <div id="wp-chatbot-desktop-reload" title="Reset"><span class="dashicons dashicons-update-alt"></span></div>
51
52 <div id="wp-chatbot-desktop-close" title="<?php echo esc_attr(get_option('qlcd_wp_chatbot_close_lan') != '' ? get_option('qlcd_wp_chatbot_close_lan') : 'Close'); ?>"><span class="dashicons dashicons-no"></span></div>
53
54 </div>
55
56
57 </div>
58 <!--wp-chatbot-header-->
59 <div class="wp-chatbot-ball-inner wp-chatbot-content">
60 <!-- only show on Mobile app -->
61 <?php if(isset($template_app) && $template_app=='yes'){?>
62 <div class="wp-chatbot-cart-checkout-wrapper">
63 <div id="wp-chatbot-cart-short-code">
64 </div>
65 <div id="wp-chatbot-checkout-short-code">
66 </div>
67 </div>
68 <?php } ?>
69 <div class="wp-chatbot-messages-wrapper">
70 <ul id="wp-chatbot-messages-container" class="wp-chatbot-messages-container">
71 </ul>
72 </div>
73 </div>
74 <div class="wp-chatbot-footer">
75 <div id="wp-chatbot-editor-container" class="wp-chatbot-editor-container">
76 <input id="wp-chatbot-editor" class="wp-chatbot-editor" required placeholder="<?php echo esc_attr(wpb_randmom_message_handle(unserialize(get_option('qlcd_wp_chatbot_send_a_msg')))); ?>"
77 >
78 <button type="button" id="wp-chatbot-send-message" class="wp-chatbot-button"><span class="dashicons dashicons-arrow-up-alt"></span></button>
79 </div>
80 <!--wp-chatbot-editor-container-->
81 <div class="wp-chatbot-tab-nav">
82 <ul>
83 <li><a class="wp-chatbot-operation-option" data-option="help" href="" title="<?php echo esc_html__('Help', 'chatbot'); ?>"></a></li>
84
85 <li class="wp-chatbot-operation-active"><a class="wp-chatbot-operation-option" data-option="chat" href="" title="<?php echo esc_html__('Chat', 'chatbot'); ?>" ></a></li>
86 <li><a class="wp-chatbot-operation-option" data-option="support" href="" title="<?php echo esc_html__('Support', 'chatbot'); ?>" ></a></li>
87 </ul>
88 </div>
89 <!--wp-chatbot-tab-nav-->
90 </div>
91 <!--wp-chatbot-footer-->
92
93
94
95
96 </div>
97 <!-- wp-chatbot-board-container-->
98 </div>
99 </div>