Merry Christmas WP-Travel Team –
In wp-content / plugins / wp-travel / inc / helpers.php I came across the following code in line 695
if ( ‘yes’ === $fixed_departure ) :
<?php echo wp_travel_get_fixed_departure_date( $post_id );
else :
$trip_duration = get_post_meta( $post_id, ‘wp_travel_trip_duration’, true );
$trip_duration = ( $trip_duration ) ? $trip_duration : 0;
?>
Could you please update to the following lines to include the stylesheets
if ( ‘yes’ === $fixed_departure ) : ?>
<div class=”wp-travel-trip-duration trip-duration”>
<i class=”wt-icon-regular wt-icon-calendar”></i>
<span class=”wp-travel-trip-duration”>
<?php echo wp_travel_get_fixed_departure_date( $post_id ); ?>
</span>
</div>
<?php else :
$trip_duration = get_post_meta( $post_id, ‘wp_travel_trip_duration’, true );
$trip_duration = ( $trip_duration ) ? $trip_duration : 0;
?>
Thank you very much.
Sunny greetings from Livingstone / Zambia
Markus Daniel Schreiner