WP VR – 360 Panorama and virtual tour creator for WordPress - Version 7.2.2

Version Description

(21-12-2020) = * Browser JS conflict fixed * Dummy functions removed

=

Download this release

Release Info

Developer rextheme
Plugin Icon 128x128 WP VR – 360 Panorama and virtual tour creator for WordPress
Version 7.2.2
Comparing to
See all releases

Code changes from version 7.2.1 to 7.2.2

README.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: https://rextheme.com/wp-vr-360-panorama-and-virtual-tour-creator-fo
5
  Requires at least: 5.0
6
  Tested up to: 5.6.0
7
  Requires PHP: 7.0.0
8
- Stable tag: 7.2.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -569,5 +569,9 @@ Simply add “/plugins/wpvr” to the exclusion field (or use the location where
569
  * Tab and accordion issue fixed
570
  * Modified rollback options
571
 
 
 
 
 
572
  == Upgrade Notice ==
573
  Please do update the WP VR to the latest version. Each update makes sure your plugin is supporting all tour features.
5
  Requires at least: 5.0
6
  Tested up to: 5.6.0
7
  Requires PHP: 7.0.0
8
+ Stable tag: 7.2.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
569
  * Tab and accordion issue fixed
570
  * Modified rollback options
571
 
572
+ = 7.2.2 (21-12-2020) =
573
+ * Browser JS conflict fixed
574
+ * Dummy functions removed
575
+
576
  == Upgrade Notice ==
577
  Please do update the WP VR to the latest version. Each update makes sure your plugin is supporting all tour features.
admin/partials/wpvr_documentation.php CHANGED
@@ -728,6 +728,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
728
  <form class="wpvr-version">
729
  <h6><?php _e('Select a Version to Rollback','wpvr'); ?></h6>
730
  <select name="wpvr_version">
 
731
  <option value="7.2.0">7.2.0</option>
732
  <option value="7.1.0">7.1.0</option>
733
  <option value="7.0.0">7.0.0</option>
728
  <form class="wpvr-version">
729
  <h6><?php _e('Select a Version to Rollback','wpvr'); ?></h6>
730
  <select name="wpvr_version">
731
+ <option value="7.2.1">7.2.1</option>
732
  <option value="7.2.0">7.2.0</option>
733
  <option value="7.1.0">7.1.0</option>
734
  <option value="7.0.0">7.0.0</option>
src/view.css CHANGED
@@ -2,7 +2,7 @@ p.wpvr-block-content {
2
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
3
  }
4
 
5
- .block-editor-block-inspector .components-base-control.wpvr-base-control {
6
  padding: 0 16px;
7
  }
8
  .block-editor-block-card .block-editor-block-icon {
@@ -10,4 +10,4 @@ p.wpvr-block-content {
10
  margin-right: 4px!important;
11
  padding: 0!important;
12
  height: 20px!important;
13
- }
2
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
3
  }
4
 
5
+ .wpvr-base-control {
6
  padding: 0 16px;
7
  }
8
  .block-editor-block-card .block-editor-block-icon {
10
  margin-right: 4px!important;
11
  padding: 0!important;
12
  height: 20px!important;
13
+ }
wpvr.php CHANGED
@@ -16,7 +16,7 @@
16
  * Plugin Name: WP VR
17
  * Plugin URI: https://rextheme.com/wpvr/
18
  * Description: WP VR - 360 Panorama and virtual tour creator for WordPress is a customized panaroma & virtual builder tool for WordPress Website.
19
- * Version: 7.2.1
20
  * Author: Rextheme
21
  * Author URI: http://rextheme.com/
22
  * License: GPL-2.0+
@@ -34,7 +34,7 @@ require plugin_dir_path(__FILE__) . 'elementor/elementor.php';
34
  * Start at version 1.0.0 and use SemVer - https://semver.org
35
  * Rename this for your plugin and update it as you release new versions.
36
  */
37
- define('WPVR', '7.2.1');
38
  define('WPVR_FILE', __FILE__);
39
  define("WPVR_PLUGIN_DIR_URL", plugin_dir_url(__FILE__));
40
  define("WPVR_PLUGIN_PUBLIC_DIR_URL", plugin_dir_url(__FILE__) .'public/');
@@ -1428,7 +1428,7 @@ function wpvr_add_role_cap()
1428
  }
1429
  add_filter('register_post_type_args', 'wpvr_role_management_from_post_type', 10, 2);
1430
 
1431
- function sample_admin_notice__success()
1432
  {
1433
  $option = get_option('wpvr_warning');
1434
  if (!$option) {
@@ -1440,7 +1440,7 @@ function wpvr_add_role_cap()
1440
  <?php
1441
  }
1442
  }
1443
- // add_action('admin_notices', 'sample_admin_notice__success');
1444
 
1445
  //===Oxygen widget===//
1446
  add_action('plugins_loaded', function () {
16
  * Plugin Name: WP VR
17
  * Plugin URI: https://rextheme.com/wpvr/
18
  * Description: WP VR - 360 Panorama and virtual tour creator for WordPress is a customized panaroma & virtual builder tool for WordPress Website.
19
+ * Version: 7.2.2
20
  * Author: Rextheme
21
  * Author URI: http://rextheme.com/
22
  * License: GPL-2.0+
34
  * Start at version 1.0.0 and use SemVer - https://semver.org
35
  * Rename this for your plugin and update it as you release new versions.
36
  */
37
+ define('WPVR', '7.2.2');
38
  define('WPVR_FILE', __FILE__);
39
  define("WPVR_PLUGIN_DIR_URL", plugin_dir_url(__FILE__));
40
  define("WPVR_PLUGIN_PUBLIC_DIR_URL", plugin_dir_url(__FILE__) .'public/');
1428
  }
1429
  add_filter('register_post_type_args', 'wpvr_role_management_from_post_type', 10, 2);
1430
 
1431
+ function wpvr_cache_admin_notice()
1432
  {
1433
  $option = get_option('wpvr_warning');
1434
  if (!$option) {
1440
  <?php
1441
  }
1442
  }
1443
+ // add_action('admin_notices', 'wpvr_cache_admin_notice');
1444
 
1445
  //===Oxygen widget===//
1446
  add_action('plugins_loaded', function () {