Mit diesen Snippet könnt ihr vor eure Produkt Anzahl einen Text einbauen
add_action('woocommerce_before_add_to_cart_quantity', 'wc_text_after_quantity');
function wc_text_after_quantity() {
if ( is_product() && has_term( 'Gutscheine', 'product_cat' ) ) {
echo 'Personen: ';
}
}
.anzahl {float: left;
padding: 10px 10px 10px 0px;}