PluginProbe
NotificationX – FOMO, Live Sales Notification, WooCommerce Sales Popup, GDPR, Social Proof, Announcement Banner & Floating Notification Bar / 1.0.1
NotificationX – FOMO, Live Sales Notification, WooCommerce Sales Popup, GDPR, Social Proof, Announcement Banner & Floating Notification Bar v1.0.1
3.3.1 3.3.0 3.2.14 3.2.13 3.2.12 3.2.11 3.2.10 3.2.9 3.2.8 3.2.7 trunk 0.2.5.5 0.2.5.6 0.2.5.7 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.2.0 1.2.1 All 156 releases
notificationx / admin / includes / fields / nx-theme.php

nx-theme.php in NotificationX – FOMO, Live Sales Notification, WooCommerce Sales Popup, GDPR, Social Proof, Announcement Banner & Floating Notification Bar 1.0.1, at admin/includes/fields/nx-theme.php

28 lines 1021 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if( isset( $field['options'] ) && ! empty( $field['options'] ) ) {
3 $options = $field['options'];
4 }
5
6 $theme_title = '';
7 ?>
8
9
10 <div class="nx-theme-control-wrapper" data-name="<?php echo $name; ?>">
11 <input id="<?php echo $name; ?>" data-prev_theme="<?php echo $value; ?>" type="hidden" name="<?php echo $name; ?>" value="<?php echo $value; ?>">
12 <div class="nx-theme-field-inner">
13 <?php
14 if( is_array( $options ) ) {
15
16 foreach( $options as $opt_key => $opt_value ) {
17 $selected = ( $value == $opt_key ) ? 'nx-theme-selected' : '';
18 ?>
19 <div class="nx-single-theme-wrapper nx-meta-field <?php echo $selected; ?>" <?php echo $attrs; ?>>
20 <img data-theme="<?php echo $opt_key; ?>" src="<?php echo $opt_value; ?>" alt="<?php echo $theme_title; ?>">
21 </div>
22 <?php
23 }
24 }
25 ?>
26 </div>
27
28 </div>