Version Description
- Updated links to be https
- Tested with WP 5.4
Download this release
Release Info
Developer | lordspace |
Plugin | Child Theme Creator by Orbisius |
Version | 1.5.1 |
Comparing to | |
See all releases |
Code changes from version 1.5.0 to 1.5.1
- addons/cloud_lib/lib/snippet_lib.php +1 -1
- assets/main.css +1 -1
- assets/main.js +2 -2
- orbisius-child-theme-creator.php +25 -25
- readme.txt +22 -15
addons/cloud_lib/lib/snippet_lib.php
CHANGED
@@ -13,7 +13,7 @@ class orbisius_ctc_cloud_lib {
|
|
13 |
* @var string Url of remote API. The plugin will dynamically pick one
|
14 |
*/
|
15 |
public $api_url = '';
|
16 |
-
public $live_api_url = '
|
17 |
// public $dev_api_url = 'http://orb-ctc.qsandbox.com/';
|
18 |
public $dev_api_url = 'http://orbclub.com.clients.com/';
|
19 |
public $staging_api_url = 'http://orb-ctc.qsandbox.com/';
|
13 |
* @var string Url of remote API. The plugin will dynamically pick one
|
14 |
*/
|
15 |
public $api_url = '';
|
16 |
+
public $live_api_url = 'https://orbisius.com/cloud-lib/';
|
17 |
// public $dev_api_url = 'http://orb-ctc.qsandbox.com/';
|
18 |
public $dev_api_url = 'http://orbclub.com.clients.com/';
|
19 |
public $staging_api_url = 'http://orb-ctc.qsandbox.com/';
|
assets/main.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/* Product of Orbisius.com. Visit
|
2 |
.orbisius_child_theme_creator_container .app-hide {
|
3 |
display: none;
|
4 |
}
|
1 |
+
/* Product of Orbisius.com. Visit https://orbisius.com/ */
|
2 |
.orbisius_child_theme_creator_container .app-hide {
|
3 |
display: none;
|
4 |
}
|
assets/main.js
CHANGED
@@ -233,7 +233,7 @@ function orbisius_ctc_theme_editor_setup() {
|
|
233 |
});
|
234 |
|
235 |
// When the admin creates a new file we'll scroll to the element so he/she can start typing
|
236 |
-
//
|
237 |
jQuery(document).on( 'orbisius_child_theme_editor_event_new_file', function(obj, custom_data) {
|
238 |
$("html, body").animate({ scrollTop: jQuery( custom_data.file_selector ).offset().top - 50 }, 1000);
|
239 |
} );
|
@@ -850,7 +850,7 @@ function app_load(form_id, action, target_container, callback) {
|
|
850 |
result : result
|
851 |
};
|
852 |
|
853 |
-
//
|
854 |
if (result != '') {
|
855 |
if (jQuery(target_container).is("input,textarea")) {
|
856 |
jQuery(target_container).val(result);
|
233 |
});
|
234 |
|
235 |
// When the admin creates a new file we'll scroll to the element so he/she can start typing
|
236 |
+
// https://stackoverflow.com/questions/6682451/animate-scroll-to-id-on-page-load
|
237 |
jQuery(document).on( 'orbisius_child_theme_editor_event_new_file', function(obj, custom_data) {
|
238 |
$("html, body").animate({ scrollTop: jQuery( custom_data.file_selector ).offset().top - 50 }, 1000);
|
239 |
} );
|
850 |
result : result
|
851 |
};
|
852 |
|
853 |
+
// https://stackoverflow.com/questions/2432749/jquery-delay-not-delaying
|
854 |
if (result != '') {
|
855 |
if (jQuery(target_container).is("input,textarea")) {
|
856 |
jQuery(target_container).val(result);
|
orbisius-child-theme-creator.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Orbisius Child Theme Creator
|
4 |
-
Plugin URI:
|
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.5.
|
7 |
Author: Svetoslav Marinov (Slavi)
|
8 |
-
Author URI:
|
9 |
*/
|
10 |
|
11 |
/* Copyright 2012-2050 Svetoslav Marinov (Slavi) <slavi@orbisius.com>
|
@@ -157,7 +157,7 @@ function orbisius_child_theme_creator_is_pro_installed() {
|
|
157 |
* @param string $parent Parent label (if creating a submenu item)
|
158 |
*
|
159 |
* @return void
|
160 |
-
* @author Slavi Marinov <
|
161 |
* */
|
162 |
function orbisius_child_theme_creator_add_admin_bar($name, $href = '', $parent = '', $custom_meta = array()) {
|
163 |
global $wp_admin_bar;
|
@@ -394,13 +394,13 @@ function orbisius_child_theme_creator_settings_page() {
|
|
394 |
|
395 |
<div class="updated"><p>
|
396 |
Some untested themes and plugin may break your site. We have launched a <strong>free</strong> service
|
397 |
-
(<a href="
|
398 |
-
target="_blank" title="[new window]">
|
399 |
that allows you to setup a test/sandbox
|
400 |
WordPress site in seconds. No technical knowledge is required.
|
401 |
<br/>Join today and test themes and plugins before you actually put them on your live site. For more info go to:
|
402 |
-
<a href="
|
403 |
-
target="_blank" title="[new window]">
|
404 |
</p></div>
|
405 |
|
406 |
<div class="updated0"><p>
|
@@ -431,7 +431,7 @@ function orbisius_child_theme_creator_settings_page() {
|
|
431 |
<li>Customize the child theme</li>
|
432 |
</ul>
|
433 |
|
434 |
-
<iframe width="560" height="315" src="
|
435 |
|
436 |
</div> <!-- .inside -->
|
437 |
|
@@ -490,10 +490,10 @@ function orbisius_child_theme_creator_settings_page() {
|
|
490 |
$email = empty($current_user->user_email) ? '' : $current_user->user_email;
|
491 |
$quick_form_action = is_ssl()
|
492 |
? 'https://ssl.orbisius.com/apps/quick-contact/'
|
493 |
-
: '
|
494 |
|
495 |
if (!empty($_SERVER['DEV_ENV'])) {
|
496 |
-
$quick_form_action = '
|
497 |
}
|
498 |
?>
|
499 |
<script>
|
@@ -599,7 +599,7 @@ function orbisius_child_theme_creator_settings_page() {
|
|
599 |
$email = empty($current_user->user_email) ? '' : $current_user->user_email;
|
600 |
?>
|
601 |
|
602 |
-
<form action="
|
603 |
id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank">
|
604 |
<input type="hidden" value="settings" name="SRC2" />
|
605 |
<input type="hidden" value="orbisius-child-theme-creator" name="SRC" />
|
@@ -667,7 +667,7 @@ function orbisius_child_theme_creator_settings_page() {
|
|
667 |
target="_blank" title="[new window]">Forums</a>
|
668 |
|
669 |
<!--|
|
670 |
-
<a href="
|
671 |
-->
|
672 |
</span>
|
673 |
</div>
|
@@ -693,7 +693,7 @@ function orbisius_child_theme_creator_settings_page() {
|
|
693 |
|
694 |
<!--<h2>Support & Feature Requests</h2>
|
695 |
<div class="updated"><p>
|
696 |
-
** NOTE: ** Support is handled on our site: <a href="//orbisius.com/forums/forum/community-support-forum/wordpress-plugins/orbisius-child-theme-creator/?utm_source=orbisius-child-theme-editor&utm_medium=action_screen&utm_campaign=product" target="_blank" title="[new window]">
|
697 |
Please do NOT use the WordPress forums or other places to seek support.
|
698 |
</p></div>-->
|
699 |
|
@@ -1020,7 +1020,7 @@ function orbisius_child_theme_creator_tools_action() {
|
|
1020 |
$buff .= "<label>
|
1021 |
<input type='checkbox' id='orbisius_child_theme_creator_copy_functions_php' name='copy_functions_php' value='1' /> Copy functons.php
|
1022 |
(<span class='app-serious-notice'><strong>Danger</strong>: if the theme doesn't support
|
1023 |
-
<a href='
|
1024 |
target='_blank'>pluggable functions</a> this <strong>will crash your site</strong>. Make a backup is highly recommended. In most cases you won't need to copy functions.php</span>)
|
1025 |
</label>
|
1026 |
";
|
@@ -1210,10 +1210,10 @@ function orbisius_child_theme_creator_tools_action() {
|
|
1210 |
$email = empty($current_user->user_email) ? '' : $current_user->user_email;
|
1211 |
$quick_form_action = is_ssl()
|
1212 |
? 'https://ssl.orbisius.com/apps/quick-contact/'
|
1213 |
-
: '
|
1214 |
|
1215 |
if (!empty($_SERVER['DEV_ENV'])) {
|
1216 |
-
$quick_form_action = '
|
1217 |
}
|
1218 |
?>
|
1219 |
<script>
|
@@ -1324,7 +1324,7 @@ function orbisius_child_theme_creator_tools_action() {
|
|
1324 |
$email = empty($current_user->user_email) ? '' : $current_user->user_email;
|
1325 |
?>
|
1326 |
|
1327 |
-
<form action="
|
1328 |
id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank">
|
1329 |
<input type="hidden" value="settings" name="SRC2" />
|
1330 |
<input type="hidden" value="orbisius-child-theme-creator" name="SRC" />
|
@@ -1392,7 +1392,7 @@ function orbisius_child_theme_creator_tools_action() {
|
|
1392 |
target="_blank" title="[new window]">Forums</a>
|
1393 |
|
1394 |
<!--|
|
1395 |
-
<a href="
|
1396 |
-->
|
1397 |
</span>
|
1398 |
</div>
|
@@ -1423,7 +1423,7 @@ function orbisius_child_theme_creator_tools_action() {
|
|
1423 |
* It seems WP intentionally adds slashes for consistency with php.
|
1424 |
* Please note: WordPress Core and most plugins will still be expecting slashes, and the above code will confuse and break them.
|
1425 |
* If you must unslash, consider only doing it to your own data which isn't used by others:
|
1426 |
-
* @see
|
1427 |
*/
|
1428 |
function orbisius_child_theme_creator_get_request($key = null, $default = '') {
|
1429 |
$req = $_REQUEST;
|
@@ -1634,7 +1634,7 @@ class orbisius_child_theme_creator {
|
|
1634 |
/**
|
1635 |
*
|
1636 |
* @return bool success
|
1637 |
-
* @see
|
1638 |
*/
|
1639 |
public function generate_style() {
|
1640 |
global $wp_version;
|
@@ -1756,7 +1756,7 @@ class orbisius_child_theme_creator {
|
|
1756 |
$bind_params[] = $text_domain;
|
1757 |
}
|
1758 |
|
1759 |
-
//
|
1760 |
$sql_prep = $wpdb->prepare("
|
1761 |
SELECT option_name
|
1762 |
FROM {$wpdb->prefix}options
|
@@ -1849,7 +1849,7 @@ class orbisius_child_theme_creator {
|
|
1849 |
*
|
1850 |
* Unlike style.css, the functions.php of a child theme does not override its counterpart from the parent.
|
1851 |
* Instead, it is loaded in addition to the parent’s functions.php. (Specifically, it is loaded right before the parent theme's functions.php).
|
1852 |
-
* Source:
|
1853 |
*
|
1854 |
* Be sure not to define functions, that already exist in the parent theme!
|
1855 |
* A common pattern is to prefix function names with the (child) theme name.
|
@@ -1911,7 +1911,7 @@ class orbisius_child_theme_creator_util {
|
|
1911 |
<div class="postbox">
|
1912 |
<h3><span>Curious about our other products?</span></h3>
|
1913 |
<div class="inside">
|
1914 |
-
Visit <a href="//orbisius.com/products/" target="_blank">
|
1915 |
</div> <!-- .inside -->
|
1916 |
</div> <!-- .postbox -->
|
1917 |
<!-- /Orbisius -->
|
@@ -2065,7 +2065,7 @@ class orbisius_child_theme_creator_util {
|
|
2065 |
* The native call might be quicker.
|
2066 |
*
|
2067 |
* Example: src: folder/1/ target: folder/2/
|
2068 |
-
* @see
|
2069 |
*/
|
2070 |
static public function copy($src, $dest, $perm = 0775) {
|
2071 |
if (!is_dir($dest)) {
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Orbisius Child Theme Creator
|
4 |
+
Plugin URI: https://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.5.1
|
7 |
Author: Svetoslav Marinov (Slavi)
|
8 |
+
Author URI: https://orbisius.com
|
9 |
*/
|
10 |
|
11 |
/* Copyright 2012-2050 Svetoslav Marinov (Slavi) <slavi@orbisius.com>
|
157 |
* @param string $parent Parent label (if creating a submenu item)
|
158 |
*
|
159 |
* @return void
|
160 |
+
* @author Slavi Marinov <https://orbisius.com>
|
161 |
* */
|
162 |
function orbisius_child_theme_creator_add_admin_bar($name, $href = '', $parent = '', $custom_meta = array()) {
|
163 |
global $wp_admin_bar;
|
394 |
|
395 |
<div class="updated"><p>
|
396 |
Some untested themes and plugin may break your site. We have launched a <strong>free</strong> service
|
397 |
+
(<a href="https://qsandbox.com/?utm_source=orbisius-child-theme-creator&utm_medium=settings_screen&utm_campaign=product"
|
398 |
+
target="_blank" title="[new window]">https://qsandbox.com</a>)
|
399 |
that allows you to setup a test/sandbox
|
400 |
WordPress site in seconds. No technical knowledge is required.
|
401 |
<br/>Join today and test themes and plugins before you actually put them on your live site. For more info go to:
|
402 |
+
<a href="https://qsandbox.com/?utm_source=orbisius-child-theme-creator&utm_medium=settings_screen&utm_campaign=product"
|
403 |
+
target="_blank" title="[new window]">https://qsandbox.com</a>
|
404 |
</p></div>
|
405 |
|
406 |
<div class="updated0"><p>
|
431 |
<li>Customize the child theme</li>
|
432 |
</ul>
|
433 |
|
434 |
+
<iframe width="560" height="315" src="https://youtube.com/embed/BZUVq6ZTv-o" frameborder="0" allowfullscreen></iframe>
|
435 |
|
436 |
</div> <!-- .inside -->
|
437 |
|
490 |
$email = empty($current_user->user_email) ? '' : $current_user->user_email;
|
491 |
$quick_form_action = is_ssl()
|
492 |
? 'https://ssl.orbisius.com/apps/quick-contact/'
|
493 |
+
: 'https://apps.orbisius.com/quick-contact/';
|
494 |
|
495 |
if (!empty($_SERVER['DEV_ENV'])) {
|
496 |
+
$quick_form_action = 'https://localhost/projects/quick-contact/';
|
497 |
}
|
498 |
?>
|
499 |
<script>
|
599 |
$email = empty($current_user->user_email) ? '' : $current_user->user_email;
|
600 |
?>
|
601 |
|
602 |
+
<form action="https://WebWeb.us2.list-manage.com/subscribe/post?u=005070a78d0e52a7b567e96df&id=1b83cd2093" method="post"
|
603 |
id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank">
|
604 |
<input type="hidden" value="settings" name="SRC2" />
|
605 |
<input type="hidden" value="orbisius-child-theme-creator" name="SRC" />
|
667 |
target="_blank" title="[new window]">Forums</a>
|
668 |
|
669 |
<!--|
|
670 |
+
<a href="https://docs.google.com/viewer?url=https%3A%2F%2Fdl.dropboxusercontent.com%2Fs%2Fwz83vm9841lz3o9%2FOrbisius_LikeGate_Documentation.pdf" target="_blank">Documentation</a>
|
671 |
-->
|
672 |
</span>
|
673 |
</div>
|
693 |
|
694 |
<!--<h2>Support & Feature Requests</h2>
|
695 |
<div class="updated"><p>
|
696 |
+
** NOTE: ** Support is handled on our site: <a href="//orbisius.com/forums/forum/community-support-forum/wordpress-plugins/orbisius-child-theme-creator/?utm_source=orbisius-child-theme-editor&utm_medium=action_screen&utm_campaign=product" target="_blank" title="[new window]">https://orbisius.com/support/</a>.
|
697 |
Please do NOT use the WordPress forums or other places to seek support.
|
698 |
</p></div>-->
|
699 |
|
1020 |
$buff .= "<label>
|
1021 |
<input type='checkbox' id='orbisius_child_theme_creator_copy_functions_php' name='copy_functions_php' value='1' /> Copy functons.php
|
1022 |
(<span class='app-serious-notice'><strong>Danger</strong>: if the theme doesn't support
|
1023 |
+
<a href='https://wp.tutsplus.com/tutorials/creative-coding/understanding-wordpress-pluggable-functions-and-their-usage/'
|
1024 |
target='_blank'>pluggable functions</a> this <strong>will crash your site</strong>. Make a backup is highly recommended. In most cases you won't need to copy functions.php</span>)
|
1025 |
</label>
|
1026 |
";
|
1210 |
$email = empty($current_user->user_email) ? '' : $current_user->user_email;
|
1211 |
$quick_form_action = is_ssl()
|
1212 |
? 'https://ssl.orbisius.com/apps/quick-contact/'
|
1213 |
+
: 'https://apps.orbisius.com/quick-contact/';
|
1214 |
|
1215 |
if (!empty($_SERVER['DEV_ENV'])) {
|
1216 |
+
$quick_form_action = 'https://localhost/projects/quick-contact/';
|
1217 |
}
|
1218 |
?>
|
1219 |
<script>
|
1324 |
$email = empty($current_user->user_email) ? '' : $current_user->user_email;
|
1325 |
?>
|
1326 |
|
1327 |
+
<form action="https://WebWeb.us2.list-manage.com/subscribe/post?u=005070a78d0e52a7b567e96df&id=1b83cd2093" method="post"
|
1328 |
id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank">
|
1329 |
<input type="hidden" value="settings" name="SRC2" />
|
1330 |
<input type="hidden" value="orbisius-child-theme-creator" name="SRC" />
|
1392 |
target="_blank" title="[new window]">Forums</a>
|
1393 |
|
1394 |
<!--|
|
1395 |
+
<a href="https://docs.google.com/viewer?url=https%3A%2F%2Fdl.dropboxusercontent.com%2Fs%2Fwz83vm9841lz3o9%2FOrbisius_LikeGate_Documentation.pdf" target="_blank">Documentation</a>
|
1396 |
-->
|
1397 |
</span>
|
1398 |
</div>
|
1423 |
* It seems WP intentionally adds slashes for consistency with php.
|
1424 |
* Please note: WordPress Core and most plugins will still be expecting slashes, and the above code will confuse and break them.
|
1425 |
* If you must unslash, consider only doing it to your own data which isn't used by others:
|
1426 |
+
* @see https://codex.wordpress.org/Function_Reference/stripslashes_deep
|
1427 |
*/
|
1428 |
function orbisius_child_theme_creator_get_request($key = null, $default = '') {
|
1429 |
$req = $_REQUEST;
|
1634 |
/**
|
1635 |
*
|
1636 |
* @return bool success
|
1637 |
+
* @see https://codex.wordpress.org/Child_Themes
|
1638 |
*/
|
1639 |
public function generate_style() {
|
1640 |
global $wp_version;
|
1756 |
$bind_params[] = $text_domain;
|
1757 |
}
|
1758 |
|
1759 |
+
// https://wordpress.stackexchange.com/questions/67292/how-to-use-wildcards-in-wpdb-queries-using-wpdb-get-results-wpdb-prepare
|
1760 |
$sql_prep = $wpdb->prepare("
|
1761 |
SELECT option_name
|
1762 |
FROM {$wpdb->prefix}options
|
1849 |
*
|
1850 |
* Unlike style.css, the functions.php of a child theme does not override its counterpart from the parent.
|
1851 |
* Instead, it is loaded in addition to the parent’s functions.php. (Specifically, it is loaded right before the parent theme's functions.php).
|
1852 |
+
* Source: https://codex.wordpress.org/Child_Themes#Using_functions.php
|
1853 |
*
|
1854 |
* Be sure not to define functions, that already exist in the parent theme!
|
1855 |
* A common pattern is to prefix function names with the (child) theme name.
|
1911 |
<div class="postbox">
|
1912 |
<h3><span>Curious about our other products?</span></h3>
|
1913 |
<div class="inside">
|
1914 |
+
Visit <a href="//orbisius.com/products/" target="_blank">https://orbisius.com/products/</a>
|
1915 |
</div> <!-- .inside -->
|
1916 |
</div> <!-- .postbox -->
|
1917 |
<!-- /Orbisius -->
|
2065 |
* The native call might be quicker.
|
2066 |
*
|
2067 |
* Example: src: folder/1/ target: folder/2/
|
2068 |
+
* @see https://stackoverflow.com/questions/5707806/recursive-copy-of-directory
|
2069 |
*/
|
2070 |
static public function copy($src, $dest, $perm = 0775) {
|
2071 |
if (!is_dir($dest)) {
|
readme.txt
CHANGED
@@ -3,8 +3,9 @@ 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: 5.
|
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.
|
@@ -14,7 +15,9 @@ Create Child Themes quickly and easily from any theme that you have currently in
|
|
14 |
This plugin allows you to quickly create child themes from any theme that you have currently installed on your site/blog.
|
15 |
It also creates rtl.css if exists in the parent theme.
|
16 |
|
17 |
-
**Did you find this plugin helpful? Please consider [writing a review](https://wordpress.org/support/view/plugin-reviews/orbisius-child-theme-creator)
|
|
|
|
|
18 |
|
19 |
= Child Theme Creator Features =
|
20 |
* Since v1.4 store your snippets, license keys in Orbisius cloud library. Access them with a click of a button.
|
@@ -57,7 +60,7 @@ It features two editors and you can pick snippets from one theme and paste into
|
|
57 |
|
58 |
= Pro Addon is Now Available =
|
59 |
We've just released the
|
60 |
-
<a href="
|
61 |
target="_blank" title="[new window]" style="font-weight: bolder;color:red;">Pro Addon</a> which improves on the current functionality.
|
62 |
|
63 |
= Important =
|
@@ -67,7 +70,7 @@ We've just released the
|
|
67 |
|
68 |
We have launched a **FREE** service that allows you to setup a test/sandbox WordPress site in seconds. No technical knowledge is required.
|
69 |
Join today and test themes and plugins before you actually put them on your live site. For more info go to:
|
70 |
-
<a href="
|
71 |
|
72 |
= Usage : To create a child theme go to =
|
73 |
Go to Admin > Appearance > Orbisius Child Theme Creator then click on the theme you like and the child theme will be created for you.
|
@@ -80,21 +83,21 @@ http://www.youtube.com/watch?v=BZUVq6ZTv-o
|
|
80 |
|
81 |
= Premium =
|
82 |
Do you want to be able to preview themes from within the 2 editors?
|
83 |
-
Get this <a href="
|
84 |
|
85 |
= Support =
|
86 |
-
> Support is handled on our site: <a href="
|
87 |
> Please do NOT use the WordPress forums or other places to seek support.
|
88 |
|
89 |
= Author =
|
90 |
|
91 |
Do you need an amazing plugin created especially for your needs? Contact me.
|
92 |
-
Svetoslav Marinov (Slavi) | <a href="
|
93 |
|
94 |
= Hire Us =
|
95 |
Do you need any WordPress work done? e.g. WordPress tweaks, new plugin development or existing plugin improvements.
|
96 |
|
97 |
-
Do you need a trusted <a href="
|
98 |
title="If you want a custom web/mobile app or a plugin developed contact us. This opens in a new window/tab">WordPress Developer</a> to hire?
|
99 |
|
100 |
== Upgrade Notice ==
|
@@ -148,14 +151,14 @@ Please use Orbisius Theme Editor (part of this plugin)
|
|
148 |
|
149 |
= Troubleshooting =
|
150 |
If your site becomes broken due to a child theme (mis)configuration. Please check another plugin of ours:
|
151 |
-
<a href="
|
152 |
|
153 |
= What to do next? =
|
154 |
-
Go to
|
155 |
|
156 |
= Need a custom plugin? =
|
157 |
Let's talk.
|
158 |
-
<a href="
|
159 |
title="If you want a custom web/mobile app/plugin developed contact us. This opens in a new window/tab"
|
160 |
class="button-primary" target="_blank">Get a Free Quote</a>
|
161 |
|
@@ -166,6 +169,10 @@ Todo
|
|
166 |
|
167 |
== Changelog ==
|
168 |
|
|
|
|
|
|
|
|
|
169 |
= 1.5.0 =
|
170 |
* changed Edit & Activaate links to look like buttons.
|
171 |
* Tested with WP 5.2
|
@@ -313,7 +320,7 @@ Todo
|
|
313 |
* Tested with WP 4.0.1
|
314 |
|
315 |
= 1.2.0 =
|
316 |
-
* Fixed: BUG - Deleting a file from Theme 1 deletes files from Theme 2. Ref:
|
317 |
* Fixes: CSS so the themes are showing up as 3 per row like they used to be.
|
318 |
* Added a link to a larger version of the theme's screenshot.
|
319 |
* Tested with WP 4
|
@@ -321,7 +328,7 @@ Todo
|
|
321 |
= 1.1.9 =
|
322 |
* Added the buttons under the 2nd editor
|
323 |
* Hid the plugin from the Tools menu
|
324 |
-
* Integrated with <a href="
|
325 |
|
326 |
|
327 |
= 1.1.8 =
|
@@ -411,7 +418,7 @@ Todo
|
|
411 |
= 1.0.3 =
|
412 |
* Tested with wp 3.6
|
413 |
* Added settings page in case users want to check it.
|
414 |
-
* Added a few notices about <a href="
|
415 |
|
416 |
= 1.0.2 =
|
417 |
* Tested with wp 3.5.2
|
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: 5.4
|
7 |
+
Requires PHP: 5.3
|
8 |
+
Stable tag: 1.5.1
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
Create Child Themes quickly and easily from any theme that you have currently installed on your site/blog.
|
15 |
This plugin allows you to quickly create child themes from any theme that you have currently installed on your site/blog.
|
16 |
It also creates rtl.css if exists in the parent theme.
|
17 |
|
18 |
+
**Did you find this plugin helpful? Please consider [writing a review](https://wordpress.org/support/view/plugin-reviews/orbisius-child-theme-creator)**
|
19 |
+
|
20 |
+
** [Live Demo](https://wpdemo.net/demos/plugins/orbisius-child-theme-creator)**
|
21 |
|
22 |
= Child Theme Creator Features =
|
23 |
* Since v1.4 store your snippets, license keys in Orbisius cloud library. Access them with a click of a button.
|
60 |
|
61 |
= Pro Addon is Now Available =
|
62 |
We've just released the
|
63 |
+
<a href="https://orbisius.com/products/wordpress-plugins/orbisius-child-theme-creator-pro/?utm_source=orbisius-child-theme-creator&utm_medium=readme&utm_campaign=product"
|
64 |
target="_blank" title="[new window]" style="font-weight: bolder;color:red;">Pro Addon</a> which improves on the current functionality.
|
65 |
|
66 |
= Important =
|
70 |
|
71 |
We have launched a **FREE** service that allows you to setup a test/sandbox WordPress site in seconds. No technical knowledge is required.
|
72 |
Join today and test themes and plugins before you actually put them on your live site. For more info go to:
|
73 |
+
<a href="https://qsandbox.com/?utm_source=orbisius-child-theme-creator&utm_medium=readme&utm_campaign=product" target="_blank" title="Free Test/Sandbox WordPress Site">https://qsandbox.com</a>
|
74 |
|
75 |
= Usage : To create a child theme go to =
|
76 |
Go to Admin > Appearance > Orbisius Child Theme Creator then click on the theme you like and the child theme will be created for you.
|
83 |
|
84 |
= Premium =
|
85 |
Do you want to be able to preview themes from within the 2 editors?
|
86 |
+
Get this <a href="https://orbisius.com/products/wordpress-plugins/orbisius-theme-switcher/?utm_source=orbisius-child-theme-creator&utm_medium=readme_description&utm_campaign=product" target="_blank" title="[new window]">Orbisius Theme Switcher</a> plugin
|
87 |
|
88 |
= Support =
|
89 |
+
> Support is handled on our site: <a href="https://orbisius.com/" target="_blank" title="[new window]">https://orbisius.com/</a>
|
90 |
> Please do NOT use the WordPress forums or other places to seek support.
|
91 |
|
92 |
= Author =
|
93 |
|
94 |
Do you need an amazing plugin created especially for your needs? Contact me.
|
95 |
+
Svetoslav Marinov (Slavi) | <a href="https://orbisius.com" title="Custom Web Programming, Web Design, e-commerce, e-store, Wordpress Plugin Development, Facebook and Mobile App Development in Niagara Falls, St. Catharines, Ontario, Canada" target="_blank">Custom Web and Mobile Programming by Orbisius.com</a>
|
96 |
|
97 |
= Hire Us =
|
98 |
Do you need any WordPress work done? e.g. WordPress tweaks, new plugin development or existing plugin improvements.
|
99 |
|
100 |
+
Do you need a trusted <a href="//orbisius.com/page/free-quote/?utm_source=child-theme-creator&utm_medium=plugin-linksutm_campaign=plugin-update"
|
101 |
title="If you want a custom web/mobile app or a plugin developed contact us. This opens in a new window/tab">WordPress Developer</a> to hire?
|
102 |
|
103 |
== Upgrade Notice ==
|
151 |
|
152 |
= Troubleshooting =
|
153 |
If your site becomes broken due to a child theme (mis)configuration. Please check another plugin of ours:
|
154 |
+
<a href="https://orbisius.com/products/wordpress-plugins/orbisius-theme-fixer/?utm_source=orbisius-child-theme-creator&utm_medium=readme_troubleshooting&utm_campaign=product" target="_blank" title="[new window]">Orbisius Theme Fixer</a>
|
155 |
|
156 |
= What to do next? =
|
157 |
+
Go to https://orbisius.com and post suggestions in our forum for new features that you'd like to see in this plugin or its extensions.
|
158 |
|
159 |
= Need a custom plugin? =
|
160 |
Let's talk.
|
161 |
+
<a href="https://orbisius.com/page/free-quote/?utm_source=orbisius-child-theme-creator&utm_medium=plugin-readme-faq&utm_campaign=product"
|
162 |
title="If you want a custom web/mobile app/plugin developed contact us. This opens in a new window/tab"
|
163 |
class="button-primary" target="_blank">Get a Free Quote</a>
|
164 |
|
169 |
|
170 |
== Changelog ==
|
171 |
|
172 |
+
= 1.5.1 =
|
173 |
+
* Updated links to be https
|
174 |
+
* Tested with WP 5.4
|
175 |
+
|
176 |
= 1.5.0 =
|
177 |
* changed Edit & Activaate links to look like buttons.
|
178 |
* Tested with WP 5.2
|
320 |
* Tested with WP 4.0.1
|
321 |
|
322 |
= 1.2.0 =
|
323 |
+
* Fixed: BUG - Deleting a file from Theme 1 deletes files from Theme 2. Ref: https://orbisius.com/forums/topic/bug-deleting-a-file-from-theme-1-deletes-files-from-theme-2/
|
324 |
* Fixes: CSS so the themes are showing up as 3 per row like they used to be.
|
325 |
* Added a link to a larger version of the theme's screenshot.
|
326 |
* Tested with WP 4
|
328 |
= 1.1.9 =
|
329 |
* Added the buttons under the 2nd editor
|
330 |
* Hid the plugin from the Tools menu
|
331 |
+
* Integrated with <a href="https://orbisius.com/products/wordpress-plugins/orbisius-theme-switcher/?utm_source=orbisius-child-theme-creator&utm_medium=readme_changelog&utm_campaign=product" target="_blank" title="[new window]">Orbisius Theme Switcher</a>
|
332 |
|
333 |
|
334 |
= 1.1.8 =
|
418 |
= 1.0.3 =
|
419 |
* Tested with wp 3.6
|
420 |
* Added settings page in case users want to check it.
|
421 |
+
* Added a few notices about <a href="https://qsandbox.com/?utm_source=orbisius-child-theme-creator&utm_medium=readme_changelog&utm_campaign=product" target="_blank" title="Free Test/Sandbox WordPress Site">https://qsandbox.com</a>
|
422 |
|
423 |
= 1.0.2 =
|
424 |
* Tested with wp 3.5.2
|