#1605

Hi again,

#1. Loco translate: I have just fixed for you, please go to page: http://laginestraerboristeria.it/new/wp-admin/admin.php?path=languages%2Fthemes%2Ffreshio-it_IT.po&bundle=freshio&domain=freshio&page=loco-theme&action=file-edit to translate text for website.

#2. “round down total cart”:
Add code into file function.php in child-theme:

//round cart total up to nearest dollar
add_filter( 'woocommerce_calculated_total', 'custom_calculated_total' );
function custom_calculated_total( $total ) {
$total = round( $total, 1 );
return ceil($total);
}