Hi @winglouie,
I’m sorry but i’m not exactly sure what you mean. Do you want to change the text in the pricing table from “Booking x4” to “Booking x4 nights” ?
Yes correct. When the user choose 4 nights in the calendar, the pricing table should show “Booking x 4 nights”. Currently it showing “Booking x 4”.
Hi,
You can try adding this code to your theme’s functions.php file, it will append the word “nights” to the end of the label.
add_filter('wpbs_line_items_before_subtotal', function($line_items){
$line_items['events']['label'] .= ' nights';
return $line_items;
});