Serafino
Forum Replies Created
-
Forum: Reviews
In reply to: [Child Theme Generator] Very good and small plugin for child theme creation!Hi lmalunin,
thank you for enthusiastic feedback, is appreciated!
Regards
Serafino
Forum: Reviews
In reply to: [Child Theme Generator] nice and fastHi telalibre,
thanks for your positive feedback!
Regards
Serafino
Forum: Reviews
In reply to: [Child Theme Generator] Excellent Plug-inHi @denizinmavisi,
thank you for positive feedback, I’ve appreciated!
Forum: Plugins
In reply to: [Child Theme Generator] add_submenu_page debuggingChanges was made only in trunk folder, sorry.
Tags/2.2.4 now is updated, please check.Forum: Plugins
In reply to: [Child Theme Generator] Changing the name of the child themeno answer, closed
Forum: Plugins
In reply to: [Child Theme Generator] add_submenu_page debuggingHi Michelle,
thank you for error reporting, I have fixed and the issue would be solved.If you would check and let me know.
Thanks & Regards
Forum: Reviews
In reply to: [Child Theme Generator] Very simple and just worksHi ancher,
thank you for your feedback!
Forum: Plugins
In reply to: [Child Theme Generator] Changing the name of the child themeI think it’s better for you following these steps:
If you added code to style.ccs and/or functions.php, remeber to save these content file somewhere.
After that, click on REMOVE CHILD THEME Tab, delete child theme with the wrong name, then goto CREATE CHILD THEME and create a new one.(Only if you saved content file): open style.css and functions.php files and paste on code saved previuosly.
Now you have a child-theme with the right name.
Forum: Plugins
In reply to: [Child Theme Generator] Additional CSS or child theme style.cssHi cheryanne,
If your css file were stored into parent theme I think would be better leave the CSS code where it is.
You can load more then one css file using WordPress ‘wp_enqueue_scripts’, below an example:
– Open your functions.php file (the one located into your child-theme)
– Add a snippet code like to the below example:add_action( 'wp_enqueue_scripts', 'myAddedCssFiles' ); function myAddedCssFiles() { wp_enqueue_style( '1AddedCss', get_template_directory_uri() . '/your-first-css-file.css', array( $parentStyle ), wp_get_theme()->get('Version') ); '2AddedCss', get_template_directory_uri() . '/your-second-css-file.css', array( $parentStyle ), wp_get_theme()->get('Version') ); /* copy and paste as many times as your css files .... .... */ 'lastAddedCss', get_template_directory_uri() . '/last-css-file.css', array( $parentStyle ), wp_get_theme()->get('Version') ); }I hope I was helpful
SerafinoForum: Plugins
In reply to: [Child Theme Generator] convert child theme back to parent themeNo answer, closed
Forum: Reviews
In reply to: [Child Theme Generator] Nice!Hi Maithuy,
thank you for your positive feedback!
Serafino
Forum: Plugins
In reply to: [Child Theme Generator] convert child theme back to parent themeHello,
the child theme is used to save the changes made to the parent theme, so all future updates on the parent theme will not delete the changes made by you.
Keep this in mind, after that, to incorporate all changes, you must save your css and js files both css and js premium folder, then you need to insert them in the functions.php of the parent theme.
To append that files use wp_enqueue_style function (for the css) and wp_enqueue_script (for the js).I Hope iI was helpful.
Serafino
Forum: Reviews
In reply to: [Child Theme Generator] Simple&PerfectHello 2g,
thank you for positive and enthusiastic feedback!Serafino
Forum: Reviews
In reply to: [Child Theme Generator] Super Easy! Maybe Too Easy!!!Hello redseptember,
This plugin follows the WordPress best practice for child theme generation, more customization will be developed by you.
One thing you must bear in mind is that the directory structure in your child theme should match that of the parent theme’s. So if you decide to edit a PHP file in “/parenttheme/includes/external/php/example.php”, you should place it in “/childtheme/includes/external/php/example.php”.
(from https://managewp.com/blog/how-to-create-a-child-theme)
I hope I was useful.
Serafino
Forum: Reviews
In reply to: [Child Theme Generator] Really Great PluginHi xossarif,
thank you for your enthusiastic feedback!
Regards