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

    Have some problems with this theme and latest wp in Dutch.

    – I cant select in page editor to choose for a layout without sidebar
    – Logo img is 1160×186, i try with child style to change the logo with, but it wont work. Height is ok.

    Is it possible to change the menu like the menu from the extra site i give you in the private content ?

    #385456

    and contact page, i used the original contact form, but the name fields filled with data selector.

    #386105

    Hey!

    Thank you for using Enfold.

    Try to add this on functions.php to disable theme options translation:

    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);
    		}
    	}
    }

    Add this on Quick CSS to fix the logo:

    .logo, .logo a {
    width: 100%;
    }

    Best regards,
    Ismael

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