Responsive Add Ons - Version 2.2.7

Version Description

  • 12th March 2020 =
  • Fixed - Fatal Error on Go Pro page and Support page
Download this release

Release Info

Developer cyberchimps
Plugin Icon 128x128 Responsive Add Ons
Version 2.2.7
Comparing to
See all releases

Code changes from version 2.2.6 to 2.2.7

includes/class-responsive-add-ons.php CHANGED
@@ -709,7 +709,6 @@ class Responsive_Add_Ons {
709
  exit();
710
  }
711
 
712
- $responsive_addon_dir = plugin_dir_path( __FILE__ );
713
  $responsive_addons_go_pro_screen = ( isset( $_GET['action'] ) && 'go_pro' === $_GET['action'] ) ? true : false; //phpcs:ignore
714
 
715
  $responsive_addon_license_screen = ( isset( $_GET['action'] ) && 'license' === $_GET['action'] ) ? true : false; //phpcs:ignore
@@ -745,14 +744,14 @@ class Responsive_Add_Ons {
745
  <?php
746
  if ( $responsive_addons_go_pro_screen ) {
747
 
748
- require_once $responsive_addon_dir . 'admin/templates/responsive-addons-go-pro.php';
749
 
750
  } elseif ( $responsive_addon_license_screen ) {
751
 
752
  do_action( 'responsive_addons_pro_license_page' );
753
  } elseif ( $responsive_addon_pro_support_screen ) {
754
 
755
- require_once $responsive_addon_dir . 'admin/templates/responsive-addons-support.php';
756
  } else {
757
 
758
  do_action( 'responsive_addons_importer_page' );
709
  exit();
710
  }
711
 
 
712
  $responsive_addons_go_pro_screen = ( isset( $_GET['action'] ) && 'go_pro' === $_GET['action'] ) ? true : false; //phpcs:ignore
713
 
714
  $responsive_addon_license_screen = ( isset( $_GET['action'] ) && 'license' === $_GET['action'] ) ? true : false; //phpcs:ignore
744
  <?php
745
  if ( $responsive_addons_go_pro_screen ) {
746
 
747
+ require_once RESPONSIVE_ADDONS_DIR . 'admin/templates/responsive-addons-go-pro.php';
748
 
749
  } elseif ( $responsive_addon_license_screen ) {
750
 
751
  do_action( 'responsive_addons_pro_license_page' );
752
  } elseif ( $responsive_addon_pro_support_screen ) {
753
 
754
+ require_once RESPONSIVE_ADDONS_DIR . 'admin/templates/responsive-addons-support.php';
755
  } else {
756
 
757
  do_action( 'responsive_addons_importer_page' );
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: one click demo import, gutenberg, elementor, templates
5
  Requires at least: 5.0
6
  Tested up to: 5.3
7
  Requires PHP: 5.3
8
- Stable tag: 2.2.6
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -106,6 +106,9 @@ Absolutely not! Once you install the plugin, it will take care of all other depe
106
  4. Your website is ready
107
 
108
  == Changelog ==
 
 
 
109
  = 2.2.6 - 6th March 2020 =
110
  * Added - Secured Ajax requests and restructured code
111
 
5
  Requires at least: 5.0
6
  Tested up to: 5.3
7
  Requires PHP: 5.3
8
+ Stable tag: 2.2.7
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
106
  4. Your website is ready
107
 
108
  == Changelog ==
109
+ = 2.2.7 - 12th March 2020 =
110
+ * Fixed - Fatal Error on Go Pro page and Support page
111
+
112
  = 2.2.6 - 6th March 2020 =
113
  * Added - Secured Ajax requests and restructured code
114
 
responsive-add-ons.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Responsive Ready Sites Importer
4
  * Plugin URI: http://wordpress.org/plugins/responsive-add-ons/
5
  * Description: Import Responsive Ready Sites that help you launch your website quickly. Just import, update & hit the launch button.
6
- * Version: 2.2.6
7
  * Author: CyberChimps
8
  * License: GPL2
9
  *
@@ -45,7 +45,7 @@ if ( ! defined( 'RESPONSIVE_ADDONS_URI' ) ) {
45
  }
46
 
47
  if ( ! defined( 'RESPONSIVE_ADDONS_VER' ) ) {
48
- define( 'RESPONSIVE_ADDONS_VER', '2.2.6' );
49
  }
50
 
51
  if ( ! function_exists( 'ra_fs' ) ) {
@@ -65,7 +65,7 @@ if ( ! function_exists( 'ra_fs' ) ) {
65
  'slug' => 'responsive-add-ons',
66
  'product_name' => 'Responsive Ready Sites Importer',
67
  'module_type' => 'plugin',
68
- 'version' => '2.2.6',
69
  'plugin_basename' => 'responsive-add-ons/responsive-add-ons.php',
70
  'plugin_url' => RESPONSIVE_ADDONS_DIR_URL,
71
  )
3
  * Plugin Name: Responsive Ready Sites Importer
4
  * Plugin URI: http://wordpress.org/plugins/responsive-add-ons/
5
  * Description: Import Responsive Ready Sites that help you launch your website quickly. Just import, update & hit the launch button.
6
+ * Version: 2.2.7
7
  * Author: CyberChimps
8
  * License: GPL2
9
  *
45
  }
46
 
47
  if ( ! defined( 'RESPONSIVE_ADDONS_VER' ) ) {
48
+ define( 'RESPONSIVE_ADDONS_VER', '2.2.7' );
49
  }
50
 
51
  if ( ! function_exists( 'ra_fs' ) ) {
65
  'slug' => 'responsive-add-ons',
66
  'product_name' => 'Responsive Ready Sites Importer',
67
  'module_type' => 'plugin',
68
+ 'version' => '2.2.7',
69
  'plugin_basename' => 'responsive-add-ons/responsive-add-ons.php',
70
  'plugin_url' => RESPONSIVE_ADDONS_DIR_URL,
71
  )