Skip to content

Instantly share code, notes, and snippets.

@akther80
Created August 30, 2023 09:25
Show Gist options
  • Save akther80/6e259a3ee04bf1b1564f307e87abd74a to your computer and use it in GitHub Desktop.
Save akther80/6e259a3ee04bf1b1564f307e87abd74a to your computer and use it in GitHub Desktop.
MyTravel - Display short desc in tour
if ( ! function_exists( 'mytravel_wc_template_loop_tour_display_desc' ) ) {
/**
* Output archive tour display location
*/
function mytravel_wc_template_loop_tour_display_location() {
if ( ! mytravel_is_acf_activated() ) {
return;
}
?>
<a href="<?php echo esc_url( get_the_permalink() ); ?>" class="d-block">
<div class="mb-1 d-flex align-items-center font-size-14 text-gray-1">
<?php
the_field( 'short_description' );
?>
</div>
</a>
<?php
}
}
add_action( 'mytravel_tour_before_shop_loop_item_title', 'mytravel_wc_template_loop_tour_display_desc', 80 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment