Hello,
1. Sorry, but there are no such features.
2. To change text to Spanish go to Appearance > Widgets and add “Woocommerce Product Categories” widget to “Shop Sidebar” area and write title you need.
To close first category, edit wp-content/themes/woopress/js/etheme.js file. Find and comment out line 1808
$this.find('>li').first().find('.open-this').html(minusIcon).parent().addClass('opened').find('ul.children').show();
Do you want to add border for categories sidebar? If so add this code in Global Custom CSS:
.woocommerce_product_categories {
border: 1px solid red;
}
.product-categories > li > a, .woocommerce_product_categories .widget-title {
padding-left: 20px;
}
To change background color, color use this css code:
.woocommerce_product_categories {
background-color: red;
}
.product-categories > li > a {
color: blue !important;
}
.product-categories > li > a:hover {
color: white !important;
}
Write color values you need.
3. Use this css code:
.fixed-header-area .header-logo {
display: none;
}
.fixed-header-area .fixed-header > .container {
width: 100%;
}
Regards,
Eva Kemp.