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

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

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