Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #384587

    Hi,

    Since the latest update of the theme I’m experiencing issues with the dashboard and the sidebars. Every new page I create (or a copy of a page) has a sidebar, even though I’ve set the default in the theme to ‘No Sidebar’. I’m wondering where this sidebar is coming from (it shows all pages of my website).

    After the latest update there seems to be an issue with the dashboard (interface). It is mixing Dutch and English language (before it was just English if I’m not mistaken) and translations are incorrect for some items.

    #384853

    Hey kashmyra!

    Thank you for using Enfold.

    Please check the page with the issue. What is the current option set on Layout > Layout? Is it set to “No Sidebar”? Try to disable the dashboard translation with this on functions.php:

    if(!function_exists('avia_lang_setup'))
    {
    	add_action('after_setup_theme', 'avia_lang_setup');
    	function avia_lang_setup()
    	{
    		if(!is_admin())
    		{
    			$lang = apply_filters('ava_theme_textdomain_path', get_template_directory()  . '/lang');
    			load_theme_textdomain('avia_framework', $lang);
    		}
    	}
    }

    Regards,
    Ismael

    #384878

    Hi Ismael,

    Strange, I had only 2 options in Layout > Layout: ‘Sidebar’ and ‘Artikel zonder Sidebar'(<< which is bad Dutch for ‘No Sidebar’ ;-)). After adding the above code to the functions.php file I suddenly had 3 options.

    Layout options for Sidebar

    I guess it means that I basically had selected the ‘Right sidebar’ option (which seemed to be the case, because every page had a right sidebar).
    Anyway, long story short, the issue is solved now.

    Thank you very much for your (continuous) support!
    Much appreciated!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Issues with dashboard & sidebars after update’ is closed to new replies.