Ah, thanks, it’s a big table and I didn’t see the X at the bottom!
Thank you Gunter!
There was a small typo in your code but following works well!
/* Include the global settings for Enfold */ add_action('init', 'tnb_change_layout', 900); function tnb_change_layout() { global $avia_config; $avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha', 'sidebar' => 'four alpha', 'meta' => 'two alpha', 'entry' => 'eight alpha'); //GWB } /* End of Enfold changes */
Thanks Josue, doesn’t appear to have worked?
I placed the following into my child functions.php, but the layout remains 9/3 for the sidebar-right configuration. Have I done something wrong?
/* Include the global settings for Enfold */
global $avia_config;
$avia_config[‘layout’][‘fullsize’] = array(‘content’ => ‘twelve alpha’, ‘sidebar’ => ‘hidden’, ‘meta’ => ‘two alpha’, ‘entry’ => ‘eleven’);
$avia_config[‘layout’][‘sidebar_left’] = array(‘content’ => ‘nine’, ‘sidebar’ => ‘three alpha’ ,’meta’ => ‘two alpha’, ‘entry’ => ‘nine’);
$avia_config[‘layout’][‘sidebar_right’] = array(‘content’ => ‘eight alpha’, ‘sidebar’ => ‘four alpha’, ‘meta’ => ‘two alpha’, ‘entry’ => ‘eight alpha’); //GWB/* End of Enfold changes */