PluginProbe
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress / 9.1.3
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress v9.1.3
9.1.3 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 All 222 releases
← All changes | legacy/admin/classes/class-setup-meta-box.php +3 -0 9.0.39.1.3 View file →
@@ -131,8 +131,11 @@
131 131
132 132 $postdata = array_merge($primary, $post_meta_data);
133 133 // active tab variables
134 134 $active_tab = 'scene';
135 + if ( ( isset( $postdata['tour-type'] ) && $postdata['tour-type'] === 'video' ) || ! empty( $postdata['vidid'] ) || ! empty( $postdata['vidurl'] ) ) {
136 + $active_tab = 'video';
137 + }
135 138 $scene_active_tab = 1;
136 139 $hotspot_active_tab = 1;
137 140 if (isset($_GET['active_tab'])) {
138 141 $active_tab = sanitize_text_field(wp_unslash($_GET['active_tab'])); // phpcs:ignore WordPress.Security.NonceVerification.Recommended