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 ?
and contact page, i used the original contact form, but the name fields filled with data selector.
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