Hello @testmictest ,
In weblizar update version we changed some functionality so that if you are using latest version of Weblizar theme you have to correction in your child theme …you have to remove $wl_theme_options = weblizar_get_options(); and replace wl_theme_options from get_theme_mod function like…
<body <?php if($wl_theme_options['box_layout']==2) { body_class('boxed'); } else
body_class(); ?>>
replace with
<body <?php $box_layout = get_theme_mod('box_layout', '1'); if ($box_layout == '2') { body_class('boxed'); } else body_class(); ?>>
If still if you have any problem to understand send me your child theme package I’ll update it.
Thank you
I have the same problem, but attempting to implement these fixes are failing for me.
First, I have calls to weblizar_get_options() in both my header.php and front-page.php files. I cannot update either file because WordPress detects errors in the other and prevents me from saving the new information.
Second, I do not have this anywhere that I can see: `<body <?php if($wl_theme_options[‘box_layout’]==2) { body_class(‘boxed’); } else
body_class(); ?>>`
Thank you.
@nwcasebolt : Share me your Site Link. And if possible your Theme(s).
Thankyou