PluginProbe
Buttonizer – Floating Menus, Sticky Buttons, & Popup Builder / 3.6.0
Buttonizer – Floating Menus, Sticky Buttons, & Popup Builder v3.6.0
3.6.0 3.5.0 trunk 1.0.10 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.6.1 1.0.7 1.0.8 1.0.9 1.1 1.1.1 1.2 1.3 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.5 1.5.1 All 110 releases
buttonizer-multifunctional-button / modules / chat-button / inc / contact-form.php

contact-form.php in Buttonizer – Floating Menus, Sticky Buttons, & Popup Builder 3.6.0, at modules/chat-button/inc/contact-form.php

90 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <!-- * Version: 3.0 -->
2 <div class="wrap">
3 <h2>Contact Form</h2>
4 <h2 class="nav-tab-wrapper">
5 <a href="admin.php?page=contact_vr" class="nav-tab">Button contact</a>
6 <a href="admin.php?page=contact_vr_showroom" class="nav-tab">Showroom</a>
7 <a href="admin.php?page=contact_vr_contact_form" class="nav-tab nav-tab-active">Contact form (beta)</a>
8 <a href="admin.php?page=contact_vr_all_in_one" class="nav-tab">All in one </a>
9 <a href="admin.php?page=contact_vr_setting" class="nav-tab">Setting</a>
10 </h2>
11
12 <h3>
13 It is currently under maintenance!
14 </h3>
15
16
17 <hr />
18
19 <h2><?php esc_html_e('Support', 'button-contact-vr'); ?></h2>
20 <p>
21 <?php
22 echo wp_kses(
23 sprintf(
24 // translators: %s will be replaced with the actual link
25 __('For submitting any support queries, feedback, bug reports or feature requests, please visit <a %s>this link</a>.', 'button-contact-vr'),
26 'href="https://r.buttonizer.io/support/community?utm_source=wp-plugin-chat-button-legacy" target="_blank"'
27 ),
28 ["a" => ["href" => [], "target" => []]]
29 );
30 ?>
31 </p>
32 </div>
33
34 <!-- css admin All in one -->
35 <style type="text/css">
36 ul#style-icon-vr {
37 margin: 0;
38 }
39
40 ul#style-icon-vr li {
41 display: inline-block;
42 margin-bottom: 0;
43 margin-right: 15px;
44 text-align: center;
45 }
46
47 ul#style-icon-vr li label {
48 display: block;
49 }
50
51 ul#style-icon-vr li span {
52 display: block;
53 width: 30px;
54 height: 30px;
55 border-radius: 50%;
56 line-height: 50px;
57 padding: 10px;
58 position: relative;
59 margin: 0 auto;
60 }
61
62 td input[type="text"] {
63 width: 100%;
64 max-width: 330px;
65 }
66
67 select#pzf_loco_img_contact_form {
68 width: 100%;
69 max-width: 330px;
70 }
71
72 ul#style-icon-vr li span img {
73 max-width: 27px;
74 position: absolute;
75 left: 50%;
76 top: 50%;
77 transform: translate(-50%, -50%);
78 }
79
80 td textarea {
81 width: 100%;
82 max-width: 420px;
83 min-height: 120px
84 }
85
86 .tox-notification.tox-notification--in.tox-notification--warning {
87 display: none;
88 }
89 </style>
90