Hello @lukazj,
You can manage the content to display as the description at the frontend from “Description” section of the individual trip. You can place your desired content here and that will be displayed at the frontend.
https://image.prntscr.com/image/16q9UT-5TnSrTZTkmPFf4Q.png
However the plugin doesnot have the feature to control the no of the word that displays. So to be able to control the word to display you have to use the custom code.
For this activate the child theme. You can even activate the child theme using the plugin given below:
https://wordpress.org/plugins/wp-child-theme-generator/
After activating the child theme, in your child theme functions.php file paste below given code.
function wp_travel_excerpt_length_customize( $length ) {
if ( get_post_type() !== WP_TRAVEL_POST_TYPE ) {
return $length;
}
return 15;
}
add_filter( 'excerpt_length', 'wp_travel_excerpt_length_customize', 999 );
You can change the no as per your requirement.
Hope this helps.
Best Regards!!