PluginProbe ʕ •ᴥ•ʔ
Wp Social Login and Register Social Counter / 1.8.2
Wp Social Login and Register Social Counter v1.8.2
trunk 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.10 1.3.11 1.3.2 1.3.3 1.3.4 1.3.6 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.4.4 1.4.5 1.4.6 1.4.8 1.4.9 1.5.0 1.6.0 1.6.1 1.7.0 1.7.1 1.7.2 1.7.3 1.7.4 1.8.0 1.8.1 1.8.2 1.8.3 1.8.5 1.8.6 1.9.0 2.0.0 2.1.0 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.8 2.2.9 3.0.0 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.2.0
wp-social / template / admin / share / share-setting.php
wp-social / template / admin / share Last commit date
share-providers.php 4 years ago share-setting.php 4 years ago style-setting.php 4 years ago tab-menu.php 4 years ago
share-setting.php
165 lines
1 <?php
2 defined( 'ABSPATH') || exit;
3 ?>
4 <div class="wslu-social-login-main-wrapper">
5 <?php
6 require_once(WSLU_LOGIN_PLUGIN . '/template/admin/share/tab-menu.php');
7 if ($message_global == 'show') { ?>
8 <div class="admin-page-framework-admin-notice-animation-container">
9 <div 0="XS_Social_Login_Settings" id="XS_Social_Login_Settings" class="updated admin-page-framework-settings-notice-message admin-page-framework-settings-notice-container notice is-dismissible" style="margin: 1em 0px; visibility: visible; opacity: 1;">
10 <p><?php echo esc_html__('Global setting data have been updated.', 'wp-social'); ?></p>
11 <button type="button" class="notice-dismiss"><span class="screen-reader-text"><?php echo esc_html__('Dismiss this notice.', 'wp-social'); ?></span></button>
12 </div>
13 </div>
14 <?php } ?>
15
16
17 <form action="<?php echo esc_url(admin_url() . 'admin.php?page=wslu_share_setting'); ?>" name="share_global_setting_form" method="post" id="share_global_setting_form">
18
19 <div class="xs-social-block-wraper">
20 <div class="xs-global-section">
21
22 <div class="wslu-single-item">
23
24 <div class="wslu-left-label">
25 <label class="wslu-sec-title" for=""><?php echo esc_html__('Use theme default font family', 'wp-social'); ?></label>
26 </div>
27
28 <div class="wslu-right-content wslu-inline">
29
30 <label class="social_radio_button_label xs_label_wp_login">
31 <input class="social_radio_button wslu-global-radio-input" type="radio" name="xs_share[show_font_from_theme]" value="1" <?php echo (!empty($return_data['show_font_from_theme'])) ? 'checked' : ''; ?>>
32
33 <?php echo esc_html__('Yes', 'wp-social'); ?>
34 </label>
35
36 <label class="social_radio_button_label xs_label_wp_login">
37 <input class="social_radio_button wslu-global-radio-input" type="radio" name="xs_share[show_font_from_theme]" value="0" <?php echo (empty($return_data['show_font_from_theme'])) ? 'checked' : ''; ?>>
38
39 <?php echo esc_html__('No', 'wp-social'); ?>
40 </label>
41
42 <div class="wslu-help-text">
43 <p><?php _e('Choose "Yes" if you want to use the default font family of the theme installed on your website.', 'wp-social'); ?></p>
44 </div>
45 </div>
46 </div>
47
48 <div class="wslu-single-item">
49 <div class="wslu-left-label">&nbsp;</div>
50 <div class="wslu-right-content">
51 <button type="submit" name="share_global_setting_submit_form" class="xs-btn btn-special small"><?php echo esc_html__('Save Changes', 'wp-social'); ?></button>
52 </div>
53 </div>
54
55
56 </div>
57 </div>
58
59 </form>
60
61 <!-- <form action="<?php echo esc_url(admin_url() . 'admin.php?page=wslu_share_setting'); ?>" name="global_setting_submit_form" method="post" id="xs_global_form">
62 <div class="social-block-wraper">
63 <div class="global-section">
64
65 <div class="wslu-single-item">
66
67 <div class="wslu-left-label">
68 <label class="wslu-sec-title" for=""><?php echo esc_html__('Hide Icon', 'wp-social'); ?></label>
69 </div>
70
71 <div class="wslu-right-content">
72
73 <input class="social_switch_button" type="checkbox" id="enable_shoe_icon_enable" name="xs_share[global][show_icon][enable]" value="1" <?php echo (isset($return_data['global']['show_icon']['enable']) && $return_data['global']['show_icon']['enable'] == 1) ? 'checked' : ''; ?>>
74 <label for="enable_shoe_icon_enable" class="social_switch_button_label"></label>
75
76 </div>
77 </div>
78
79 <div class="wslu-single-item">
80
81 <div class="wslu-left-label">
82 <label class="wslu-sec-title" for=""><?php echo esc_html__('Hide Text', 'wp-social'); ?></label>
83 </div>
84
85 <div class="wslu-right-content">
86
87 <input class="social_switch_button" type="checkbox" id="enable_shoe_text_enable" name="xs_share[global][show_text][enable]" value="1" <?php echo (isset($return_data['global']['show_text']['enable']) && $return_data['global']['show_text']['enable'] == 1) ? 'checked' : ''; ?>>
88 <label for="enable_shoe_text_enable" class="social_switch_button_label"></label>
89
90 </div>
91 </div>
92
93 <div class="wslu-single-item">
94
95 <div class="wslu-left-label">
96 <label class="wslu-sec-title" for=""><?php echo esc_html__('Hide Label', 'wp-social'); ?></label>
97 </div>
98
99 <div class="wslu-right-content">
100
101 <input class="social_switch_button" type="checkbox" id="enable_shoe_label_enable" name="xs_share[global][show_label][enable]" value="1" <?php echo (isset($return_data['global']['show_label']['enable']) && $return_data['global']['show_label']['enable'] == 1) ? 'checked' : ''; ?>>
102 <label for="enable_shoe_label_enable" class="social_switch_button_label"></label>
103
104 </div>
105 </div>
106
107 <div class="wslu-single-item">
108
109 <div class="wslu-left-label">
110 <label class="wslu-sec-title" for=""><?php echo esc_html__('Hide Share Count', 'wp-social'); ?></label>
111 </div>
112
113 <div class="wslu-right-content">
114
115 <input class="social_switch_button" type="checkbox" id="enable_shoe_counter_enable" name="xs_share[global][show_counter][enable]" value="1" <?php echo (isset($return_data['global']['show_counter']['enable']) && $return_data['global']['show_counter']['enable'] == 1) ? 'checked' : ''; ?>>
116 <label for="enable_shoe_counter_enable" class="social_switch_button_label"></label>
117
118 </div>
119 </div>
120
121 <div class="wslu-single-item">
122
123 <div class="wslu-left-label">&nbsp;</div>
124
125 <div class="wslu-right-content">
126 <button type="submit" name="share_settings_submit_form_global" class="xs-btn btn-special small"><?php echo esc_html__('Save Changes', 'wp-social'); ?></button>
127 </div>
128 </div>
129
130 <div class="wslu-single-item">
131
132 <div class="wslu-left-label"><label class="wslu-sec-title" for=""><?php echo esc_html__('Shortcode ', 'wp-social'); ?></label></div>
133
134 <div class="wslu-right-content">
135 <ol class="wslu-social-shortcodes">
136 <li>[xs_social_share] </li>
137 <li>[xs_social_share provider="facebook,twitter,instagram" class="custom-class"] </li>
138 <li>[xs_social_share provider="facebook" class="custom-class" style=""]</li>
139 </ol>
140 </div>
141 </div>
142
143 </div>
144 </div>
145 </form> -->
146
147 <br>
148 <br>
149 <br>
150
151 <div class="wslu-single-item">
152
153 <div class="wslu-left-label"><label class="wslu-sec-title" for=""><?php echo esc_html__('Shortcode ', 'wp-social'); ?></label></div>
154
155 <div class="wslu-right-content">
156 <ol class="wslu-social-shortcodes">
157 <li>[xs_social_share] </li>
158 <li>[xs_social_share provider="facebook,twitter,instagram" class="custom-class"] </li>
159 <li>[xs_social_share provider="facebook" class="custom-class" style="" hover=""]</li>
160 <li>[xs_social_share provider="all" class="" style="style-3" hover="top-tooltip" layout="horizontal/vertical" count="Yes/No"]</li>
161 </ol>
162 </div>
163 </div>
164
165 </div>