It works, thanks :-)
Hello Ismael,
like Arapla I want to resize the left sidebar, so I edit functions.php in my child theme but nothing happens.
Here my url: http://ecbiz147.inmotionhosting.com/~morepa5/?page_id=2438
Here my functions.php:
<?php
/*
* Add your own functions here. You can also copy some of the theme functions into this file.
* WordPress will use those functions instead of the original functions then.
*/
/*to add or edit an Advanced Layout Builder element*/
add_filter(‘avia_load_shortcodes’, ‘avia_include_shortcode_template’, 15, 1);
function avia_include_shortcode_template($paths)
{
$template_url = get_stylesheet_directory();
array_unshift($paths, $template_url.’/shortcodes/’);
return $paths;
}
/*Resize left sidebar*/
$avia_config[‘layout’][‘sidebar_left’] = array(‘content’ => ‘ten’, ‘sidebar’ => ‘two alpha’ ,’meta’ => ‘two alpha’, ‘entry’ => ‘nine’);