PluginProbe
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress / 8.5.78
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress v8.5.78
9.1.2 9.1.1 9.1.0 9.0.3 9.0.2 9.0.1 9.0.0 8.5.79 8.5.78 8.5.77 8.5.76 8.5.75 8.5.74 8.5.73 8.5.72 8.5.71 8.5.70 8.5.69 8.5.68 8.5.35 8.5.36 8.5.37 8.5.38 8.5.39 8.5.4 All 221 releases
wpvr / admin / partials / wpvr_checklist_template.php

wpvr_checklist_template.php in WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress 8.5.78, at admin/partials/wpvr_checklist_template.php

154 lines 9.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
2 <div id="wpvr-checklist">
3 <div class="wpvr-progress-container">
4 <div id="wpvr-progress-bar"></div>
5 <span id="wpvr-progress-text">0%</span>
6 </div>
7
8
9 <ul id="wpvr-checklist-items" class="wpvr-checklist">
10
11 <li class="wpvr-checklist-item" style="color: <?php echo esc_attr($wpvr_check_scene ? '#0E003C' : '#73707D'); ?>">
12 <label for="wpvr-check-scene" class="wpvr-custom-checkbox">
13 <input type="checkbox" id="wpvr-check-scene" class="wpvr-checklist-items"
14 <?php echo esc_attr($wpvr_check_scene ? 'checked' : '');?>>
15 <span class="checkmark"></span>
16 <?php esc_html_e( 'Add at least one scene', 'wpvr' ); ?>
17 </label>
18
19 <span class="wpvr-tooltip">
20 <span class="icon">
21 <svg width="15" height="16" fill="none" viewBox="0 0 15 16" xmlns="http://www.w3.org/2000/svg">
22 <path stroke="#73707D" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.333"
23 d="M5.56 5.9a2.08 2.08 0 01.873-1.114 1.92 1.92 0 011.351-.259 1.98 1.98 0 011.192.717c.305.38.471.86.47 1.356 0 1.4-2 2.1-2 2.1m.054 2.8h.006m6.66-3.5c0 3.866-2.984 7-6.666 7C3.818 15 .833 11.866.833 8S3.818 1 7.5 1s6.666 3.134 6.666 7z">
24 </path>
25 </svg>
26 </span>
27 <p><?php esc_html_e( 'Upload your first 360° image or video.', 'wpvr' ); ?></p>
28 </span>
29 </li>
30
31 <li class="wpvr-checklist-item" style="color: <?php echo esc_attr($wpvr_check_media ? '#0E003C' : '#73707D'); ?>">
32 <label for="wpvr-check-media" class="wpvr-custom-checkbox">
33 <input type="checkbox" id="wpvr-check-media" class="wpvr-checklist-items"
34 <?php echo esc_attr($wpvr_check_media ? 'checked' : ''); ?>>
35 <span class="checkmark"></span>
36 <?php esc_html_e( 'Upload 360° media', 'wpvr' ); ?>
37 </label>
38
39 <span class="wpvr-tooltip">
40 <span class="icon">
41 <svg width="15" height="16" fill="none" viewBox="0 0 15 16" xmlns="http://www.w3.org/2000/svg">
42 <path stroke="#73707D" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.333"
43 d="M5.56 5.9a2.08 2.08 0 01.873-1.114 1.92 1.92 0 011.351-.259 1.98 1.98 0 011.192.717c.305.38.471.86.47 1.356 0 1.4-2 2.1-2 2.1m.054 2.8h.006m6.66-3.5c0 3.866-2.984 7-6.666 7C3.818 15 .833 11.866.833 8S3.818 1 7.5 1s6.666 3.134 6.666 7z">
44 </path>
45 </svg>
46 </span>
47 <p><?php esc_html_e( 'Ensure media is self-hosted or from YouTube/Vimeo.', 'wpvr' ); ?></p>
48 </span>
49 </li>
50
51 <li class="wpvr-checklist-item" style="color: <?php echo esc_attr($wpvr_check_default ? '#0E003C' : '#73707D'); ?>">
52 <label for="wpvr-check-default" class="wpvr-custom-checkbox">
53 <input type="checkbox" id="wpvr-check-default" class="wpvr-checklist-items"
54 <?php echo esc_attr($wpvr_check_default ? 'checked' : ''); ?>>
55 <span class="checkmark"></span>
56 <?php esc_html_e( 'Set a default scene', 'wpvr' ); ?>
57 </label>
58
59 <span class="wpvr-tooltip">
60 <span class="icon">
61 <svg width="15" height="16" fill="none" viewBox="0 0 15 16" xmlns="http://www.w3.org/2000/svg">
62 <path stroke="#73707D" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.333"
63 d="M5.56 5.9a2.08 2.08 0 01.873-1.114 1.92 1.92 0 011.351-.259 1.98 1.98 0 011.192.717c.305.38.471.86.47 1.356 0 1.4-2 2.1-2 2.1m.054 2.8h.006m6.66-3.5c0 3.866-2.984 7-6.666 7C3.818 15 .833 11.866.833 8S3.818 1 7.5 1s6.666 3.134 6.666 7z">
64 </path>
65 </svg>
66 </span>
67 <p><?php esc_html_e( 'Choose where users will start the tour.', 'wpvr' ); ?></p>
68 </span>
69 </li>
70
71 <li class="wpvr-checklist-item" style="color: <?php echo esc_attr($wpvr_check_hotspots ? '#0E003C' : '#73707D'); ?>">
72 <label for="wpvr-check-hotspots" class="wpvr-custom-checkbox">
73 <input type="checkbox" id="wpvr-check-hotspots" class="wpvr-checklist-items"
74 <?php echo esc_attr($wpvr_check_hotspots ? 'checked' : ''); ?>>
75 <span class="checkmark"></span>
76 <?php esc_html_e( 'Add navigation hotspots', 'wpvr' ); ?>
77 </label>
78
79 <span class="wpvr-tooltip">
80 <span class="icon">
81 <svg width="15" height="16" fill="none" viewBox="0 0 15 16" xmlns="http://www.w3.org/2000/svg">
82 <path stroke="#73707D" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.333"
83 d="M5.56 5.9a2.08 2.08 0 01.873-1.114 1.92 1.92 0 011.351-.259 1.98 1.98 0 011.192.717c.305.38.471.86.47 1.356 0 1.4-2 2.1-2 2.1m.054 2.8h.006m6.66-3.5c0 3.866-2.984 7-6.666 7C3.818 15 .833 11.866.833 8S3.818 1 7.5 1s6.666 3.134 6.666 7z">
84 </path>
85 </svg>
86 </span>
87 <p><?php esc_html_e( 'Link different scenes or add interactive elements.', 'wpvr' ); ?></p>
88 </span>
89 </li>
90
91 <li class="wpvr-checklist-item" style="color: <?php echo esc_attr($wpvr_check_movement_controls ? '#0E003C' : '#73707D'); ?>">
92 <label for="wpvr-check-movement-controls" class="wpvr-custom-checkbox">
93 <input type="checkbox" id="wpvr-check-movement-controls" class="wpvr-checklist-items"
94 <?php echo esc_attr($wpvr_check_movement_controls ? 'checked' : ''); ?>>
95 <span class="checkmark"></span>
96 <?php esc_html_e( 'Enable basic controls', 'wpvr' ); ?>
97 </label>
98
99 <span class="wpvr-tooltip">
100 <span class="icon">
101 <svg width="15" height="16" fill="none" viewBox="0 0 15 16" xmlns="http://www.w3.org/2000/svg">
102 <path stroke="#73707D" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.333"
103 d="M5.56 5.9a2.08 2.08 0 01.873-1.114 1.92 1.92 0 011.351-.259 1.98 1.98 0 011.192.717c.305.38.471.86.47 1.356 0 1.4-2 2.1-2 2.1m.054 2.8h.006m6.66-3.5c0 3.866-2.984 7-6.666 7C3.818 15 .833 11.866.833 8S3.818 1 7.5 1s6.666 3.134 6.666 7z">
104 </path>
105 </svg>
106 </span>
107 <p><?php esc_html_e( 'Allow movement within the tour.', 'wpvr' ); ?></p>
108 </span>
109 </li>
110 <?php if (apply_filters('is_wpvr_pro_active', false)) {?>
111 <li class="wpvr-checklist-item">
112 <label for="wpvr-check-zoom-controls" class="wpvr-custom-checkbox">
113 <input type="checkbox" id="wpvr-check-zoom-controls" class="wpvr-checklist-items"
114 <?php echo esc_attr($wpvr_check_zoom_controls ? 'checked' : ''); ?>>
115 <span class="checkmark"></span>
116 <?php esc_html_e( 'Enable zoom controls', 'wpvr' ); ?>
117 </label>
118
119 <span class="wpvr-tooltip">
120 <span class="icon">
121 <svg width="15" height="16" fill="none" viewBox="0 0 15 16" xmlns="http://www.w3.org/2000/svg">
122 <path stroke="#73707D" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.333"
123 d="M5.56 5.9a2.08 2.08 0 01.873-1.114 1.92 1.92 0 011.351-.259 1.98 1.98 0 011.192.717c.305.38.471.86.47 1.356 0 1.4-2 2.1-2 2.1m.054 2.8h.006m6.66-3.5c0 3.866-2.984 7-6.666 7C3.818 15 .833 11.866.833 8S3.818 1 7.5 1s6.666 3.134 6.666 7z">
124 </path>
125 </svg>
126 </span>
127 <p><?php esc_html_e( 'Allow zooming within the tour.', 'wpvr' ); ?></p>
128 </span>
129 </li>
130 <?php }?>
131
132 <li class="wpvr-checklist-item" style="color: <?php echo esc_attr($wpvr_check_publish ? '#0E003C' : '#73707D'); ?>">
133 <label for="wpvr-check-publish" class="wpvr-custom-checkbox">
134 <input type="checkbox" id="wpvr-check-publish" class="wpvr-checklist-items"
135 <?php echo esc_attr($wpvr_check_publish ? 'checked' : ''); ?>>
136 <span class="checkmark"></span>
137 <?php esc_html_e( 'Publish the tour', 'wpvr' ); ?>
138 </label>
139
140 <span class="wpvr-tooltip">
141 <span class="icon">
142 <svg width="15" height="16" fill="none" viewBox="0 0 15 16" xmlns="http://www.w3.org/2000/svg">
143 <path stroke="#73707D" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.333"
144 d="M5.56 5.9a2.08 2.08 0 01.873-1.114 1.92 1.92 0 011.351-.259 1.98 1.98 0 011.192.717c.305.38.471.86.47 1.356 0 1.4-2 2.1-2 2.1m.054 2.8h.006m6.66-3.5c0 3.866-2.984 7-6.666 7C3.818 15 .833 11.866.833 8S3.818 1 7.5 1s6.666 3.134 6.666 7z">
145 </path>
146 </svg>
147 </span>
148 <p><?php esc_html_e( 'Publish your tour and embed it anywhere on your site.', 'wpvr' ); ?></p>
149 </span>
150 </li>
151
152 </ul>
153
154 </div>