i’ve in the meantime found this solution. put this in your (child) theme’s functions.php:
// Add specific CSS class by filter
add_filter( ‘body_class’, ‘my_class_names’ );
function my_class_names( $classes ) {
$classes[] = ‘woocommerce-page’;// add ‘class-name’ (in hierdie geval ‘woocommerce-page’) to the $classes array
return $classes;// return the $classes array
}