Child Theme Creator by Orbisius - Version 1.4.7

Version Description

  • Made a fix so the plugin doesn't crash WP 4.2 installs wp_scripts (Thanks Leila for reporting this)
  • Tested with latest WordPress
Download this release

Release Info

Developer lordspace
Plugin Icon wp plugin Child Theme Creator by Orbisius
Version 1.4.7
Comparing to
See all releases

Code changes from version 1.4.6 to 1.4.7

addons/cloud_lib/lib/snippet_lib.php CHANGED
@@ -84,12 +84,22 @@ class orbisius_ctc_cloud_lib {
84
  wp_enqueue_script( 'jquery-ui-dialog' );
85
  wp_enqueue_script( 'jquery-ui-autocomplete' );
86
  wp_enqueue_script('jquery-ui-tabs');
87
-
88
- $wp_scripts = wp_scripts();
 
 
 
 
 
 
 
 
 
 
89
  wp_enqueue_style('orbisius_ctc_cloud_lib_jquery_ui',
90
- '//ajax.googleapis.com/ajax/libs/jqueryui/' . $wp_scripts->registered['jquery-ui-core']->ver . '/themes/smoothness/jquery-ui.min.css',
91
  false,
92
- '1.0',
93
  false
94
  );
95
 
84
  wp_enqueue_script( 'jquery-ui-dialog' );
85
  wp_enqueue_script( 'jquery-ui-autocomplete' );
86
  wp_enqueue_script('jquery-ui-tabs');
87
+
88
+ // We want to load the current jquiery_ui version's style.
89
+ $current_jquiery_ui_ver = '1.12.1';
90
+
91
+ if (function_exists('wp_scripts')) { // since WP 4.2
92
+ $wp_scripts = wp_scripts();
93
+
94
+ if (!empty($wp_scripts->registered['jquery-ui-core']->ver)) {
95
+ $current_jquiery_ui_ver = $wp_scripts->registered['jquery-ui-core']->ver;
96
+ }
97
+ }
98
+
99
  wp_enqueue_style('orbisius_ctc_cloud_lib_jquery_ui',
100
+ '//ajax.googleapis.com/ajax/libs/jqueryui/' . $current_jquiery_ui_ver . '/themes/smoothness/jquery-ui.min.css',
101
  false,
102
+ $current_jquiery_ui_ver,
103
  false
104
  );
105
 
nbproject/private/private.xml CHANGED
@@ -138,7 +138,11 @@
138
  <file>file:/C:/Copy/Dropbox/cloud/projects/default/htdocs/wordpress313/wp-content/plugins/orbisius-child-theme-creator/orbisius-child-theme-creator.php</file>
139
  <file>file:/C:/Copy/Dropbox/cloud/projects/default/htdocs/wordpress313/wp-content/plugins/orbisius-child-theme-creator/readme.txt</file>
140
  </group>
141
- <group/>
142
  <group name="qSandbox"/>
 
 
 
 
 
143
  </open-files>
144
  </project-private>
138
  <file>file:/C:/Copy/Dropbox/cloud/projects/default/htdocs/wordpress313/wp-content/plugins/orbisius-child-theme-creator/orbisius-child-theme-creator.php</file>
139
  <file>file:/C:/Copy/Dropbox/cloud/projects/default/htdocs/wordpress313/wp-content/plugins/orbisius-child-theme-creator/readme.txt</file>
140
  </group>
 
141
  <group name="qSandbox"/>
142
+ <group>
143
+ <file>file:/C:/Copy/Dropbox/cloud/projects/default/htdocs/wordpress313/wp-content/plugins/orbisius-child-theme-creator/assets/main.css</file>
144
+ <file>file:/C:/Copy/Dropbox/cloud/projects/default/htdocs/wordpress313/wp-content/plugins/orbisius-child-theme-creator/assets/main.min.css</file>
145
+ <file>file:/C:/Copy/Dropbox/cloud/projects/default/htdocs/wordpress313/wp-content/plugins/orbisius-child-theme-creator/orbisius-child-theme-creator.php</file>
146
+ </group>
147
  </open-files>
148
  </project-private>
orbisius-child-theme-creator.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Orbisius Child Theme Creator
4
  Plugin URI: http://orbisius.com/products/wordpress-plugins/orbisius-child-theme-creator/
5
  Description: This plugin allows you to quickly create child themes from any theme that you have currently installed on your site/blog.
6
- Version: 1.4.6
7
  Author: Svetoslav Marinov (Slavi)
8
  Author URI: http://orbisius.com
9
  */
3
  Plugin Name: Orbisius Child Theme Creator
4
  Plugin URI: http://orbisius.com/products/wordpress-plugins/orbisius-child-theme-creator/
5
  Description: This plugin allows you to quickly create child themes from any theme that you have currently installed on your site/blog.
6
+ Version: 1.4.7
7
  Author: Svetoslav Marinov (Slavi)
8
  Author URI: http://orbisius.com
9
  */
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: lordspace,orbisius
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=7APYDVPBCSY9A
4
  Tags: theme,child theme,childtheme,childthemes,parent theme,child themes,CSS,styling,resposive design,design,custom themeing, shared hosting,theme editor theme,themes,wp,wordpress,orbisius,theme creator,custom theme,theme generator,css,css editor
5
  Requires at least: 3.4
6
- Tested up to: 4.8
7
- Stable tag: 1.4.6
8
  License: GPLv2 or later
9
 
10
  Create Child Themes quickly and easily from any theme that you have currently installed on your site/blog.
@@ -166,6 +166,10 @@ Todo
166
 
167
  == Changelog ==
168
 
 
 
 
 
169
  = 1.4.6 =
170
  * Changed the on mouse over effect to a nicer yellow.
171
  * Tested with latest WordPress
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=7APYDVPBCSY9A
4
  Tags: theme,child theme,childtheme,childthemes,parent theme,child themes,CSS,styling,resposive design,design,custom themeing, shared hosting,theme editor theme,themes,wp,wordpress,orbisius,theme creator,custom theme,theme generator,css,css editor
5
  Requires at least: 3.4
6
+ Tested up to: 4.9
7
+ Stable tag: 1.4.7
8
  License: GPLv2 or later
9
 
10
  Create Child Themes quickly and easily from any theme that you have currently installed on your site/blog.
166
 
167
  == Changelog ==
168
 
169
+ = 1.4.7 =
170
+ * Made a fix so the plugin doesn't crash WP 4.2 installs wp_scripts (Thanks Leila for reporting this)
171
+ * Tested with latest WordPress
172
+
173
  = 1.4.6 =
174
  * Changed the on mouse over effect to a nicer yellow.
175
  * Tested with latest WordPress