-
AuthorPosts
-
March 6, 2016 at 5:09 pm #593948
Hi there, it seems to be an issue with the child theme.
Whatever file i put there, in or out of folders dows not work at all. Only changes to the main theme are working.
Do not know if this helps, but i have changed the wp-content filename with iThemes… i guess this is the problem but… i really need it.Please i need a fix – suggestion ASAP. Thanks in advance, Kostas
March 6, 2016 at 9:44 pm #594005Hi kmichalaros!
hey Kostas,
it is possible for us to see your web site and the child theme?
Might be something wrong while creating it. It will help us define the issue better for you.Thanks a lot
Cheers!
BasilisMarch 7, 2016 at 11:00 am #594186Hi, of course you can, my login details are in the private area.
thanksMarch 8, 2016 at 6:20 am #594813Hi,
Thanks for the login details, I’m not sure what changes you are trying to make though?
Regards,
RikardMarch 8, 2016 at 11:26 am #594937Hi RIcard,
for example i am trying to change loop-search.php and i copy-paste it in the child’s folder, but it does not change.
Only if i change the file at the main theme.March 9, 2016 at 7:47 am #595354Hi,
It’s not a default WordPress file so it won’t override in a child theme, you might be able to override the function you are working in if you copy it to your child themes functions.php though. Could you try to see if that works?
Thanks,
RikardMarch 9, 2016 at 10:26 am #595435ok i will try it, but i do not think this is it, another example is the lang folder…
i have created a file in the child theme and it does not read the .po files from it… only if i have them in the main theme…i do not know why is that, but in other themes this is the way i do it for many years
March 14, 2016 at 1:39 pm #597703Hi!
We cannot view the front end of the site. It is password protected please let us know what is the pass to view the frontend.
Sometimes child theme wont work if there are conflict’s with plugins to find the plugin in conflict please follow the below steps
1. Goto plugins page > Deactivate all active Plugins
2. Updated WordPress and Enfold to latest version if you have not.
3. Activate one plugin at a time… refresh the page and check for the issue.
4. Make sure the plugins are all updatedBest regards,
Vinay KashyapMarch 14, 2016 at 1:43 pm #597704Hi there, i managed to make it work, my only issue is the lang files… i put them in a lang folder in the child theme but it does not work…
any ideas?March 17, 2016 at 4:14 am #599393Hey!
Add this code in the functions.php file:
add_action('after_setup_theme', 'avia_child_lang_setup'); function avia_child_lang_setup() { remove_action('after_setup_theme', 'avia_lang_setup'); $lang = get_stylesheet_directory() . '/lang'; load_theme_textdomain('avia_framework', $lang); }
This will load the language files from child theme’s lang folder.
Regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.