Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #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

    #594005

    Hi 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!
    Basilis

    #594186

    Hi, of course you can, my login details are in the private area.
    thanks

    #594813

    Hi,

    Thanks for the login details, I’m not sure what changes you are trying to make though?

    Regards,
    Rikard

    #594937

    Hi 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.

    #595354

    Hi,

    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,
    Rikard

    #595435

    ok 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

    #597703

    Hi!

    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 updated

    Best regards,
    Vinay Kashyap

    #597704

    Hi 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?

    #599393

    Hey!

    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

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.