with the following code i got the following
€22.50?exlusief borg
but i need
Huurprijs vanaf €22.50?exlusief borg
why doesnt it work?
add_filter( ‘easy_booking_price_html’, ‘easy_booking_display_custom_price’, 10, 3 );
function easy_booking_display_custom_price( $price_html, $product, $price ) {
$content = ‘Huurprijs vanaf ‘ . $price_html;
return $price_html;
}
add_filter( ‘easy_booking_get_price_suffix’, ‘easy_booking_custom_price_suffix’, 10, 3 );
function easy_booking_custom_price_suffix( $suffix, $_product, $booking_duration ) {
$suffix = ‘ exlusief borg ‘;
return $suffix;
}