Hi @thai,
i edited the file
x/framework/functions/custom-sidebars.php
function ups_sidebars_validate( $input ) {
if ( isset( $input['add_sidebar'] ) ) {
$sidebars = get_option( 'ups_sidebars' );
if ( ! empty( $input['add_sidebar'] ) ) {
$sidebar_id_slug = 'ups-sidebar-' . sanitize_title_with_dashes( remove_accents( $input['add_sidebar'] ) );
$sidebars[$sidebar_id_slug] = array(
'name' => esc_html( $input['add_sidebar'] ),
'description' => '',
'sidebar-id' => $sidebar_id_slug,
'before_title' => '<div class="h-widget">',
'after_title' => '</div>',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'pages' => array(),
'taxonomies' => array(),
'children' => 'off',
'index-blog' => 'off',
'index-shop' => 'off'
);
}
and tried it both way. First copy the file via ftp in the pro/framework/functions/ folder and after that didnt work in the child themes folder pro-child/framework/functions/. Also i edited the code around line 219-228. I did clear the cache just in case. Both ways no change.