1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
|
<?php /* WPFront Scroll Top Plugin Copyright (C) 2013, WPFront.com Website: wpfront.com Contact: syam@wpfront.com
WPFront Scroll Top Plugin is distributed under the GNU General Public License, Version 3, June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
namespace WPFront\Scroll_Top;
/** * Template for WPFront Scroll Top Options * * @author Syam Mohan <syam@wpfront.com> * @copyright 2013 WPFront.com */ ?>
<?php @$this->options_page_header(__('WPFront Scroll Top Settings', 'wpfront-scroll-top'), WPFront_Scroll_Top::OPTIONS_GROUP_NAME); ?>
<h3><?php echo __('Display', 'wpfront-scroll-top'); ?></h3> <table class="form-table"> <tr> <th scope="row"> <?php echo $this->options->enabled_label(); ?> </th> <td> <input type="checkbox" name="<?php echo $this->options->enabled_name(); ?>" <?php echo $this->options->enabled() ? 'checked' : ''; ?> /> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->javascript_async_label(); ?> </th> <td> <input type="checkbox" name="<?php echo $this->options->javascript_async_name(); ?>" <?php echo $this->options->javascript_async() ? 'checked' : ''; ?> /> <span class="description"><?php echo __('[Increases site performance. Keep it enabled, if there are no conflicts.]', 'wpfront-scroll-top'); ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->scroll_offset_label(); ?> </th> <td> <input class="pixels" name="<?php echo $this->options->scroll_offset_name(); ?>" value="<?php echo $this->options->scroll_offset(); ?>" />px <span class="description"><?php echo __('[Number of pixels to be scrolled before the button appears.]', 'wpfront-scroll-top'); ?></span> </td> </tr> <tr> <th scope="row"> <?php echo __('Button Size', 'wpfront-scroll-top'); ?> </th> <td> <input class="pixels" name="<?php echo $this->options->button_width_name(); ?>" value="<?php echo $this->options->button_width(); ?>" />px X <input class="pixels" name="<?php echo $this->options->button_height_name(); ?>" value="<?php echo $this->options->button_height(); ?>" />px <span class="description"><?php echo __('[Set 0px to auto fit.]', 'wpfront-scroll-top'); ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->button_opacity_label(); ?> </th> <td> <input class="seconds" name="<?php echo $this->options->button_opacity_name(); ?>" value="<?php echo $this->options->button_opacity(); ?>" />% </td> </tr> <tr> <th scope="row"> <?php echo $this->options->button_fade_duration_label(); ?> </th> <td> <input class="seconds" name="<?php echo $this->options->button_fade_duration_name(); ?>" value="<?php echo $this->options->button_fade_duration(); ?>" />ms <span class="description"><?php echo __('[Button fade duration in milliseconds.]', 'wpfront-scroll-top'); ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->scroll_duration_label(); ?> </th> <td> <input class="seconds" name="<?php echo $this->options->scroll_duration_name(); ?>" value="<?php echo $this->options->scroll_duration(); ?>" />ms <span class="description"><?php echo __('[Window scroll duration in milliseconds.]', 'wpfront-scroll-top'); ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->auto_hide_label(); ?> </th> <td> <input type="checkbox" name="<?php echo $this->options->auto_hide_name(); ?>" <?php echo $this->options->auto_hide() ? "checked" : ""; ?> /> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->auto_hide_after_label(); ?> </th> <td> <input class="seconds" name="<?php echo $this->options->auto_hide_after_name(); ?>" value="<?php echo $this->options->auto_hide_after(); ?>" />sec <span class="description"><?php echo __('[Button will be auto hidden after this duration in seconds, if enabled.]', 'wpfront-scroll-top'); ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->hide_small_device_label(); ?> </th> <td> <input type="checkbox" name="<?php echo $this->options->hide_small_device_name(); ?>" <?php echo $this->options->hide_small_device() ? "checked" : ""; ?> /> <span class="description"><?php echo __('[Button will be hidden on small devices when the width matches.]', 'wpfront-scroll-top'); ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->small_device_width_label(); ?> </th> <td> <input class="pixels" name="<?php echo $this->options->small_device_width_name(); ?>" value="<?php echo $this->options->small_device_width(); ?>" />px <span class="description"><?php echo __('[Button will be hidden on devices with lesser or equal width.]', 'wpfront-scroll-top'); ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->hide_small_window_label(); ?> </th> <td> <input type="checkbox" name="<?php echo $this->options->hide_small_window_name(); ?>" <?php echo $this->options->hide_small_window() ? "checked" : ""; ?> /> <span class="description"><?php echo __('[Button will be hidden on broswer window when the width matches.]', 'wpfront-scroll-top'); ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->small_window_width_label(); ?> </th> <td> <input class="pixels" name="<?php echo $this->options->small_window_width_name(); ?>" value="<?php echo $this->options->small_window_width(); ?>" />px <span class="description"><?php echo __('[Button will be hidden on browser window with lesser or equal width.]', 'wpfront-scroll-top'); ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->hide_wpadmin_label(); ?> </th> <td> <input type="checkbox" name="<?php echo $this->options->hide_wpadmin_name(); ?>" <?php echo $this->options->hide_wpadmin() ? "checked" : ""; ?> /> <span class="description"><?php echo __('[Button will be hidden on \'wp-admin\'.]', 'wpfront-scroll-top'); ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->hide_iframe_label(); ?> </th> <td> <input type="checkbox" name="<?php echo $this->options->hide_iframe_name(); ?>" <?php echo $this->options->hide_iframe() ? "checked" : ""; ?> /> <span class="description"><?php echo __('[Button will be hidden on iframes, usually inside popups.]', 'wpfront-scroll-top'); ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->button_style_label(); ?> </th> <td> <div> <label><input type="radio" class="button-style" name="<?php echo $this->options->button_style_name(); ?>" value="image" <?php echo $this->options->button_style() == 'image' ? 'checked' : ''; ?> /> <?php echo __('Image', 'wpfront-scroll-top'); ?></label> <br /> <label><input type="radio" class="button-style" name="<?php echo $this->options->button_style_name(); ?>" value="text" <?php echo $this->options->button_style() == 'text' ? 'checked' : ''; ?> /> <?php echo __('Text', 'wpfront-scroll-top'); ?></label> <br /> <label><input type="radio" class="button-style" name="<?php echo $this->options->button_style_name(); ?>" value="font-awesome" <?php echo $this->options->button_style() == 'font-awesome' ? 'checked' : ''; ?> /> <?php echo __('Font Awesome', 'wpfront-scroll-top'); ?></label> </div> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->button_action_label(); ?> </th> <td> <div class="button-action-container"> <label><input type="radio" class="button-action" name="<?php echo $this->options->button_action_name(); ?>" value="top" <?php echo $this->options->button_action() == 'top' ? 'checked' : ''; ?> /> <?php echo __('Scroll to Top', 'wpfront-scroll-top'); ?></label> <span class="description"><?php echo __('[Default action on WP-ADMIN pages.]', 'wpfront-scroll-top'); ?></span> <br /> <label><input type="radio" class="button-action" name="<?php echo $this->options->button_action_name(); ?>" value="element" <?php echo $this->options->button_action() == 'element' ? 'checked' : ''; ?> /> <?php echo __('Scroll to Element', 'wpfront-scroll-top'); ?></label> <div class="fields-container element hidden"> <div> <span><input class="alignment-holder" type="radio"/></span> <span class="sub-label"><?php echo $this->options->button_action_element_selector_label() . ': '; ?></span> <span><input name="<?php echo $this->options->button_action_element_selector_name(); ?>" value="<?php echo $this->options->button_action_element_selector(); ?>" /> <span class="description"><?php echo __('[CSS selector of the element, you are trying to scroll to. Ex: #myDivID, .myDivClass]', 'wpfront-scroll-top'); ?></span></span> </div> <div> <span><input class="alignment-holder" type="radio"/></span> <span class="sub-label"><?php echo $this->options->button_action_container_selector_label() . ': '; ?></span> <span><input name="<?php echo $this->options->button_action_container_selector_name(); ?>" value="<?php echo $this->options->button_action_container_selector(); ?>" /> <span class="description"><?php echo __('[CSS selector of the element, which has the scroll bar. "html, body" works in almost all cases.]', 'wpfront-scroll-top'); ?></span></span> </div> <div> <span><input class="alignment-holder" type="radio"/></span> <span class="sub-label"><?php echo $this->options->button_action_element_offset_label() . ': '; ?></span> <span><input class="pixels" name="<?php echo $this->options->button_action_element_offset_name(); ?>" value="<?php echo $this->options->button_action_element_offset(); ?>" />px <span class="description"><?php echo __('[Negative value allowed. Use this filed to precisely set scroll position. Useful when you have overlapping elements.]', 'wpfront-scroll-top'); ?></span></span> </div> <div> <span><input class="alignment-holder" type="radio"/></span> <span class="sub-label"><a target="_blank" href="https://wpfront.com/wordpress-plugins/scroll-top-plugin/scroll-top-plugin-faq/"><?php echo __('How to find CSS selector?', 'wpfront-scroll-top'); ?></a></span> </div> </div> <br /> <label><input type="radio" class="button-action" name="<?php echo $this->options->button_action_name(); ?>" value="url" <?php echo $this->options->button_action() == 'url' ? 'checked' : ''; ?> /> <?php echo __('Link to Page', 'wpfront-scroll-top'); ?></label> <div class="fields-container url hidden"> <div> <span><input class="alignment-holder" type="radio"/></span> <span class="sub-label"><?php echo $this->options->button_action_page_url_label() . ': '; ?></span> <span class="url"><input class="url" name="<?php echo $this->options->button_action_page_url_name(); ?>" value="<?php echo $this->options->button_action_page_url(); ?>" /></span> </div> </div> </div> </td> </tr> </table>
<h3><?php echo __('Location', 'wpfront-scroll-top'); ?></h3> <table class="form-table"> <tr> <th scope="row"> <?php echo $this->options->location_label(); ?> </th> <td> <select name="<?php echo $this->options->location_name(); ?>"> <option value="1" <?php echo $this->options->location() == 1 ? 'selected' : ''; ?> ><?php echo __('Bottom Right', 'wpfront-scroll-top'); ?></option> <option value="2" <?php echo $this->options->location() == 2 ? 'selected' : ''; ?> ><?php echo __('Bottom Left', 'wpfront-scroll-top'); ?></option> <option value="3" <?php echo $this->options->location() == 3 ? 'selected' : ''; ?> ><?php echo __('Top Right', 'wpfront-scroll-top'); ?></option> <option value="4" <?php echo $this->options->location() == 4 ? 'selected' : ''; ?> ><?php echo __('Top Left', 'wpfront-scroll-top'); ?></option> </select> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->marginX_label(); ?> </th> <td> <input class="pixels" name="<?php echo $this->options->marginX_name(); ?>" value="<?php echo $this->options->marginX(); ?>" />px <span class="description"><?php echo __('[Negative value allowed.]', 'wpfront-scroll-top'); ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->marginY_label(); ?> </th> <td> <input class="pixels" name="<?php echo $this->options->marginY_name(); ?>" value="<?php echo $this->options->marginY(); ?>" />px <span class="description"><?php echo __('[Negative value allowed.]', 'wpfront-scroll-top'); ?></span> </td> </tr> </table>
<h3><?php echo __('Filter', 'wpfront-scroll-top'); ?></h3> <table class="form-table"> <tr> <th scope="row"> <?php echo $this->options->display_pages_label(); ?> </th> <td> <label> <input type="radio" name="<?php echo $this->options->display_pages_name(); ?>" value="1" <?php echo $this->options->display_pages() == 1 ? 'checked' : ''; ?> /> <span><?php echo __('All pages.', 'wpfront-scroll-top'); ?></span> </label> <br /> <label> <input type="radio" name="<?php echo $this->options->display_pages_name(); ?>" value="2" <?php echo $this->options->display_pages() == 2 ? 'checked' : ''; ?> /> <span><?php echo __('Include in following pages', 'wpfront-scroll-top'); ?></span> <span class="description"><?php echo __('[Use the textbox below to specify the post IDs as a comma separated list.]', 'wpfront-scroll-top'); ?></span> </label> <br /> <input class="post-id-list" name="<?php echo $this->options->include_pages_name(); ?>" value="<?php echo $this->options->include_pages(); ?>" /> <div class="pages-selection"> <?php $objects = $this->get_filter_objects(); foreach ($objects as $key => $value) { ?> <div class="page-div"> <label> <input type="checkbox" value="<?php echo $key; ?>" <?php echo $this->filter_pages_contains($this->options->include_pages(), $key) === FALSE ? '' : 'checked'; ?> /> <?php echo $value; ?> </label> </div> <?php } ?> </div> <label> <input type="radio" name="<?php echo $this->options->display_pages_name(); ?>" value="3" <?php echo $this->options->display_pages() == 3 ? 'checked' : ''; ?> /> <span><?php echo __('Exclude in following pages', 'wpfront-scroll-top'); ?></span> <span class="description"><?php echo __('[Use the textbox below to specify the post IDs as a comma separated list.]', 'wpfront-scroll-top'); ?></span> </label> <br /> <input class="post-id-list" name="<?php echo $this->options->exclude_pages_name(); ?>" value="<?php echo $this->options->exclude_pages(); ?>" /> <div class="pages-selection"> <?php $objects = $this->get_filter_objects(); foreach ($objects as $key => $value) { ?> <div class="page-div"> <label> <input type="checkbox" value="<?php echo $key; ?>" <?php echo $this->filter_pages_contains($this->options->exclude_pages(), $key) === FALSE ? '' : 'checked'; ?> /> <?php echo $value; ?> </label> </div> <?php } ?> </div> </td> </tr> </table>
<h3 class="button-options text"><?php echo __('Text Button', 'wpfront-scroll-top'); ?></h3> <table class="form-table button-options text"> <tr> <th scope="row"> <?php echo $this->options->text_button_text_label(); ?> </th> <td> <input name="<?php echo $this->options->text_button_text_name(); ?>" value="<?php echo $this->options->text_button_text(); ?>" /> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->text_button_text_color_label(); ?> </th> <td> <div class="color-selector-div"> <div class="color-selector" color="<?php echo $this->options->text_button_text_color(); ?>"></div> <span><?php echo $this->options->text_button_text_color(); ?></span> <input type="hidden" name="<?php echo $this->options->text_button_text_color_name(); ?>" value="<?php echo $this->options->text_button_text_color(); ?>" /> </div> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->text_button_background_color_label(); ?> </th> <td> <div class="color-selector-div"> <div class="color-selector" color="<?php echo $this->options->text_button_background_color(); ?>"></div> <span><?php echo $this->options->text_button_background_color(); ?></span> <input type="hidden" name="<?php echo $this->options->text_button_background_color_name(); ?>" value="<?php echo $this->options->text_button_background_color(); ?>" /> </div> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->text_button_hover_color_label(); ?> </th> <td> <div class="color-selector-div"> <div class="color-selector" color="<?php echo $this->options->text_button_hover_color(); ?>"></div> <span><?php echo $this->options->text_button_hover_color(); ?></span> <input type="hidden" name="<?php echo $this->options->text_button_hover_color_name(); ?>" value="<?php echo $this->options->text_button_hover_color(); ?>" /> </div> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->text_button_css_label(); ?> </th> <td> <textarea name="<?php echo $this->options->text_button_css_name(); ?>" rows="5" cols="100"><?php echo $this->options->text_button_css(); ?></textarea> <br /> <span class="description"><?php echo '[' . __('ex:', 'wpfront-scroll-top') . ' font-size: 1.5em; padding: 10px;]'; ?></span> </td> </tr> </table>
<h3 class="button-options font-awesome"><?php echo __('Font Awesome Button', 'wpfront-scroll-top'); ?></h3> <table class="form-table button-options font-awesome"> <tr> <th scope="row"> <?php echo $this->options->fa_button_class_label(); ?> </th> <td> <input class="regular-text" name="<?php echo $this->options->fa_button_class_name(); ?>" value="<?php echo $this->options->fa_button_class(); ?>" /> <span class="description"><?php echo '[' . __('ex:', 'wpfront-scroll-top') . ' fa fa-arrow-circle-up fa-5x]'; ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->fa_button_URL_label(); ?> </th> <td> <input class="url" name="<?php echo $this->options->fa_button_URL_name(); ?>" value="<?php echo $this->options->fa_button_URL(); ?>" /> <br /> <span class="description"><?php echo '[Leave blank to use BootstrapCDN URL by MaxCDN. Otherwise specify the URL you want to use.]'; ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->fa_button_exclude_URL_label(); ?> </th> <td> <input type="checkbox" name="<?php echo $this->options->fa_button_exclude_URL_name(); ?>" <?php echo $this->options->fa_button_exclude_URL() ? "checked" : ""; ?> /> <span class="description"><?php echo '[Enable this setting if your site already has Font Awesome. Usually your theme includes it.]'; ?></span> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->fa_button_text_color_label(); ?> </th> <td> <div class="color-selector-div"> <div class="color-selector" color="<?php echo $this->options->fa_button_text_color(); ?>"></div> <span><?php echo $this->options->fa_button_text_color(); ?></span> <input type="hidden" name="<?php echo $this->options->fa_button_text_color_name(); ?>" value="<?php echo $this->options->fa_button_text_color(); ?>" /> </div> </td> </tr> <tr> <th scope="row"> <?php echo $this->options->fa_button_css_label(); ?> </th> <td> <textarea name="<?php echo $this->options->fa_button_css_name(); ?>" rows="5" cols="100"><?php echo $this->options->fa_button_css(); ?></textarea> <br /> <span class="description"><?php echo '[' . __('ex:', 'wpfront-scroll-top') . ' #wpfront-scroll-top-container i:hover{ color: #000000; }]'; ?></span> </td> </tr> </table>
<h3 class="button-options image"><?php echo __('Image Button', 'wpfront-scroll-top'); ?></h3> <div class="button-options image"> <div class="icons-container"> <?php $files = scandir($this->iconsDIR); foreach ($files as $file) { if ($file == '.' || $file == '..') continue; echo '<div ' . ($this->options->image() == $file ? 'class="selected"' : '') . '>'; echo '<input id="' . $file . '" name="' . $this->options->image_name() . '" type="radio" value="' . $file . '" ' . ($this->options->image() == $file ? 'checked' : '') . ' />'; echo '<label for="' . $file . '"><img src="' . $this->iconsURL . $file . '"/></label>'; echo '</div>'; } ?> </div> <div> <input id="custom" name="<?php echo $this->options->image_name(); ?>" type="radio" value="custom" <?php echo ($this->options->image() == 'custom' ? 'checked' : ''); ?> /> <label for="custom"><?php echo __('Custom URL', 'wpfront-scroll-top'); ?> <input id="custom-url-textbox" class="url" name="<?php echo $this->options->custom_url_name(); ?>" value="<?php echo $this->options->custom_url(); ?>"/> <input type="button" id="media-library-button" class="button" value="<?php echo __('Media Library', 'wpfront-scroll-top'); ?>" /> </label> </div> <table class="form-table"> <tr> <th scope="row"> <?php echo $this->options->image_alt_label(); ?> </th> <td> <input id="alt-textbox" class="altText" name="<?php echo $this->options->image_alt_name(); ?>" value="<?php echo $this->options->image_alt(); ?>" /> </td> </tr> </table> </div>
<?php @$this->options_page_footer('scroll-top-plugin-settings/', 'scroll-top-plugin-faq/'); ?>
<script type="text/javascript"> (function() { init_wpfront_scroll_top_options({ button_style: '<?php echo $this->options->button_style(); ?>', button_action: '<?php echo $this->options->button_action(); ?>', label_choose_image: '<?php echo __('Choose Image', 'wpfront-scroll-top'); ?>', label_select_image: '<?php echo __('Select Image', 'wpfront-scroll-top'); ?>' }); })(); </script>
|