Shortcode To Display Post Custom Field Value Inside Excerpt

Even though this is specific for OceanWP, the solution is plain WordPress.

Add these two lines to the end of your functions.php to render the shortcodes in both the_excerpt() and get_the_excerpt().

add_filter( 'the_excerpt', 'do_shortcode' );
add_filter('get_the_excerpt', 'do_shortcode');