PluginProbe ʕ •ᴥ•ʔ
Hustle – Email Marketing, Lead Generation, Optins, Popups / 7.4.6
Hustle – Email Marketing, Lead Generation, Optins, Popups v7.4.6
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 / commons / sui-wizard / tab-appearance / device-mobiles.php
wordpress-popup / views / admin / commons / sui-wizard / tab-appearance Last commit date
row-advanced 4 years ago row-colors 5 years ago row-customize-elements 5 years ago row-typography 5 years ago rows 5 years ago device-desktop.php 5 years ago device-mobiles.php 5 years ago
device-mobiles.php
81 lines
1 <?php
2 /**
3 * Mobiles appearance settings.
4 *
5 * @uses ./../../../global/sui-components/sui-notice
6 * @uses ./rows/customize-elements
7 * @uses ./rows/advanced
8 *
9 * @package Hustle
10 * @since 4.3.0
11 */
12
13 $device = 'mobile';
14
15 $notice = array(
16 'alert' => false,
17 'type' => 'info',
18 'message' => esc_html__( 'Layout, Color Palette, Font Family from Typography settings, Vanilla Theme, and Custom CSS options are inherited from the Desktop settings.', 'hustle' ),
19 );
20
21 $vanilla_notice = array(
22 'alert' => false,
23 'message' => esc_html__( 'There are no mobile settings available as you have enabled the "Vanilla theme" option under the desktop settings.', 'hustle' ),
24 );
25 ?>
26
27 <div id="hustle-wizard-appearance-mobiles">
28
29 <?php // ROW: Top notice. ?>
30
31 <div data-toggle-content="use-vanilla">
32 <?php $this->render( 'admin/global/sui-components/sui-notice', $notice ); ?>
33
34 <hr aria-hidden="true" />
35 </div>
36
37 <?php
38 // ROW: Customize Elements.
39 $this->render(
40 'admin/commons/sui-wizard/tab-appearance/rows/customize-elements',
41 array(
42 'settings' => $settings,
43 'is_optin' => $is_optin,
44 'device' => $device,
45 'smallcaps_singular' => $smallcaps_singular,
46 )
47 );
48 ?>
49
50 <div data-toggle-content="not-use-vanilla">
51 <?php $this->render( 'admin/global/sui-components/sui-notice', $vanilla_notice ); ?>
52 </div>
53
54 <?php
55 // ROW: Typography.
56 $this->render(
57 'admin/commons/sui-wizard/tab-appearance/rows/typography',
58 array(
59 'settings' => $settings,
60 'is_optin' => $is_optin,
61 'device' => $device,
62 'smallcaps_singular' => $smallcaps_singular,
63 'capitalize_singular' => $capitalize_singular,
64 )
65 );
66
67 // ROW: Advanced.
68 $this->render(
69 'admin/commons/sui-wizard/tab-appearance/rows/advanced',
70 array(
71 'settings' => $settings,
72 'is_optin' => $is_optin,
73 'device' => $device,
74 'smallcaps_singular' => $smallcaps_singular,
75 'capitalize_singular' => $capitalize_singular,
76 )
77 );
78 ?>
79
80 </div>
81