PluginProbe ʕ •ᴥ•ʔ
Hustle – Email Marketing, Lead Generation, Optins, Popups / 7.8.5
Hustle – Email Marketing, Lead Generation, Optins, Popups v7.8.5
7.8.14.2 7.8.14 7.8.14.1 7.8.13 7.8.13.1 trunk 3.0 3.1 3.1.1 3.1.2 3.1.3 3.1.4 4.3.2 4.4.4 4.4.5 4.4.5.1 4.4.5.4 4.6 4.6.1.1 4.6.1.4 4.7.0.2 4.7.0.3 4.7.0.7 4.7.0.9 4.7.1.0 4.7.1.1 4.8.0.0 5.0.0 5.0.1 5.0.1.1 5.0.1.2 5.1 5.1.1 5.1.2 5.1.3 5.1.3.1 5.1.3.2 5.1.4 5.1.5 6.0 6.0.1 6.0.2 6.0.3 6.0.4.2 6.0.5 6.0.6.1 6.0.7 6.0.8.1 6.0.9 7.0.0.1 7.0.2 7.0.3 7.0.4 7.1.0 7.1.1 7.2.0 7.2.1 7.3.0 7.3.1 7.3.3 7.3.5 7.3.6 7.3.7 7.4.0 7.4.1 7.4.11 7.4.13 7.4.13.1 7.4.2 7.4.3 7.4.4 7.4.5 7.4.5.1 7.4.5.2 7.4.6 7.4.7 7.5.0 7.6.0 7.6.1 7.6.3 7.6.4 7.6.6 7.7.0 7.7.1 7.8.0 7.8.1 7.8.10 7.8.10.1 7.8.10.2 7.8.11 7.8.12 7.8.12.1 7.8.2 7.8.3 7.8.4 7.8.5 7.8.6 7.8.7 7.8.8 7.8.9 7.8.9.1 7.8.9.2 7.8.9.3
wordpress-popup / views / admin / sshare / display-options / tpl--floating-social.php
wordpress-popup / views / admin / sshare / display-options Last commit date
position-horizontal-vertical.php 3 years ago position-offset.php 6 years ago template.php 6 years ago tpl--floating-social.php 6 years ago tpl--inline-content.php 5 years ago tpl--position-settings.php 3 years ago tpl--shortcode.php 6 years ago tpl--widget.php 3 years ago
tpl--floating-social.php
87 lines
1 <?php
2 /**
3 * Floating display type section.
4 *
5 * @package Hustle
6 * @since 4.0.0
7 */
8
9 ?>
10 <div class="sui-box-settings-row">
11
12 <div class="sui-box-settings-col-1">
13
14 <span class="sui-settings-label"><?php esc_html_e( 'Floating Social', 'hustle' ); ?></span>
15
16 <span class="sui-description"><?php esc_html_e( 'Add a floating social bar to your website and also customize its location.', 'hustle' ); ?></span>
17
18 </div>
19
20 <div class="sui-box-settings-col-2">
21
22 <?php
23 // SETTINGS: Enable on desktop.
24 $this->render(
25 'admin/sshare/display-options/tpl--position-settings',
26 array(
27 'label' => esc_html__( 'on desktop', 'hustle' ),
28 'description' => esc_html__( 'Enabling this will add a floating social bar to your website when visitors are on a desktop.', 'hustle' ),
29 'prefix' => 'float_desktop',
30 'settings' => $settings,
31 'offset_x' => true,
32 'offset_y' => true,
33 'positions' => array(
34 'left' => array(
35 'label' => esc_html__( 'Left', 'hustle' ),
36 'image1x' => 'social-position/float-desktop-left.png',
37 'image2x' => 'social-position/float-desktop-left@2x.png',
38 ),
39 'right' => array(
40 'label' => esc_html__( 'Right', 'hustle' ),
41 'image1x' => 'social-position/float-desktop-right.png',
42 'image2x' => 'social-position/float-desktop-right@2x.png',
43 ),
44 'center' => array(
45 'label' => esc_html__( 'Centered', 'hustle' ),
46 'image1x' => 'social-position/float-desktop-center.png',
47 'image2x' => 'social-position/float-desktop-center@2x.png',
48 ),
49 ),
50 )
51 );
52
53 // SETTINGS: Enable on mobile.
54 $this->render(
55 'admin/sshare/display-options/tpl--position-settings',
56 array(
57 'label' => esc_html__( 'on mobile', 'hustle' ),
58 'description' => esc_html__( 'Enabling this will add a floating social bar to your website when visitors are on a mobile device.', 'hustle' ),
59 'prefix' => 'float_mobile',
60 'settings' => $settings,
61 'offset_x' => true,
62 'offset_y' => true,
63 'positions' => array(
64 'left' => array(
65 'label' => esc_html__( 'Left', 'hustle' ),
66 'image1x' => 'social-position/float-mobile-left.png',
67 'image2x' => 'social-position/float-mobile-left@2x.png',
68 ),
69 'right' => array(
70 'label' => esc_html__( 'Right', 'hustle' ),
71 'image1x' => 'social-position/float-mobile-right.png',
72 'image2x' => 'social-position/float-mobile-right@2x.png',
73 ),
74 'center' => array(
75 'label' => esc_html__( 'Centered', 'hustle' ),
76 'image1x' => 'social-position/float-mobile-center.png',
77 'image2x' => 'social-position/float-mobile-center@2x.png',
78 ),
79 ),
80 )
81 );
82 ?>
83
84 </div>
85
86 </div>
87