Ashanna
4/7/2016 - 6:47 AM

[Easy Booking] Add text after "/ day"

[Easy Booking] Add text after "/ day"

add_filter( 'easy_booking_display_price', 'easy_booking_display_custom_price', 10, 1 );

function easy_booking_display_custom_price( $content ) {
    $content .= ' your custom text';
    return $content;
}