-
INSTALLATION OF CHILD THEME
In my case I installed the child theme that came with the template files Highend, I changed the way that load css styles of parent theme, as recommended by the Codex page codex. wordpress.org/Child_Themes
Removing this part of file style.css:
@import url ("../ HighendWP / style.css");
And adding to this functions.php:
add_action ('wp_enqueue_scripts', 'enqueue_parent_theme_style'); enqueue_parent_theme_style function () { wp_enqueue_style ('relative-style' get_template_directory_uri (). '/ style.css'); }
By activating the child theme I found several incidents on the web:
– Menus have to reassign
– In the footer was created 4 sections with 4 different widgets, google maps widget disappeared and appeared instead the default sidebar with lots of widgets that did not capitalized as facebook, twitter… Must reconfigure footer.
– The page bbPress had set a sidebar with widgets login, search and list of forums. It has to be reconfigured.
– Background colors, colors of links, menu colors, color-accent returned to the default settings. It has to be reconfigured.QUESTIONS ABOUT CHILD THEME
1. I need to copy the files to .mo language, .po and .pot inside the child theme to avoid overwriting in future updates to the site? Speak in case I modified these files.2. bbPress folder and the files included more file css styles that come by default in the Highend Theme is necessary to copy them in the child theme to avoid overwriting in future updates? Speak in case I modified these files.
3. I installed the plugin and events calendar I made modifications and tribe-folder by placing events in HighendWP modified files as recommended by the creators of the plugin. This procedure is applicable to all plugins support it or just some? You need to create the same folder tribe-theme events in the child or in this case it is not necessary?
CONCLUSIONS
All these cases I happened to me on my website if they are not applicable in general or not, in any case I mention to someone if you feel the same if I am wrong in some way tomorrow so that together we help correct and we can help.
At first I found most problems are not serious problems.
About my experience that I recommend the installation of child theme is one of the first steps in configuring a website.
Excuse me for my English and thanks.
-
HB-Themes support team typically replies to all topics within 48 hours except on weekends and public holidays. You must register to post topics.
Forum Categories
- Highend WP Theme 25,690
- Aegaeus WP Theme 1,616
- Requests and Feedback 133