Hello. Yes, you can use the dd-carousel-after-content
hook to add a function to get whatever post meta you want. Below is an example of how to get the WooCommerce price. You would just get your post meta from your post id using your custom post type for whatever event you have.
Plugin Hooks
function add_wc_price_to_carousel(){
global $post, $woocommerce;
$product = wc_get_product( $post->ID );
if ($product) {
echo '<p class="price">$' . $product->get_price() . '</p>' ;
echo '<a href="'.get_permalink( $post->ID ).'" class="btn btn-primary ">Shop Now</a>';
}
}
add_action('dd-carousel-after-content', 'add_wc_price_to_carousel', 10);