Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Roland Murg

    (@murgroland)

    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” ?

    Thread Starter Louie Sonugan

    (@winglouie)

    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”.

    Plugin Author Roland Murg

    (@murgroland)

    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;
    });
Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.