Well, you can change the text with this filter. Add the code to your theme functions.php:
add_filter( 'easy_booking_loop_add_to_cart_link', 'easy_booking_loop_add_to_cart_link', 10, 2 );
function easy_booking_loop_add_to_cart_link( $content, $product ) {
$product_id = is_callable( array( $product, 'get_id' ) ) ? $product->get_id() : $product->id;
$link = get_permalink( $product_id );
$label = __( 'Your custom text', 'easy_booking' );
$content = '<a href="' . esc_url( $link ) . '" rel="nofollow" class="button">' . esc_html( $label ) . '</a>';
return $content;
}
And then change “Your custom text” to whatever text you want ??