Hello,
Add the code below to the functions.php file of the OceanWP child theme and check it works or not? or go to the oceanwp/partials/entry folder and copy the meta.php file in your child theme, then edit it for your CPT purpose.
function OWP_CPT_entry_meta() {
global $post;
if ($post->post_type == "Your Custom Post Type") {
?>
<ul class="meta clr">
<li class="meta-author"<?php oceanwp_schema_markup( 'author_name' ); ?>><i class="icon-user"></i><?php echo the_author_posts_link(); ?></li>
<li class="meta-date"<?php oceanwp_schema_markup( 'publish_date' ); ?>><i class="icon-clock"></i><?php echo get_the_date(); ?></li>
<li class="meta-cat"><i class="icon-folder"></i><?php the_category( ' / ', get_the_ID() ); ?></li>
<li class="meta-comments"><i class="icon-bubble"></i><?php comments_popup_link( esc_html__( '0 Comments', 'oceanwp' ), esc_html__( '1 Comment', 'oceanwp' ), esc_html__( '% Comments', 'oceanwp' ), 'comments-link' ); ?></li>
</ul>
<?php
}
}
add_filter('ocean_blog_entry_meta','OWP_CPT_entry_meta');
function OWP_CPT_single_meta() {
global $post;
if ($post->post_type == "Your Custom Post Type") {
?>
<ul class="meta clr">
<li class="meta-author"<?php oceanwp_schema_markup( 'author_name' ); ?>><i class="icon-user"></i><?php echo the_author_posts_link(); ?></li>
<li class="meta-date"<?php oceanwp_schema_markup( 'publish_date' ); ?>><i class="icon-clock"></i><?php echo get_the_date(); ?></li>
<li class="meta-cat"><i class="icon-folder"></i><?php the_category( ' / ', get_the_ID() ); ?></li>
<li class="meta-comments"><i class="icon-bubble"></i><?php comments_popup_link( esc_html__( '0 Comments', 'oceanwp' ), esc_html__( '1 Comment', 'oceanwp' ), esc_html__( '% Comments', 'oceanwp' ), 'comments-link' ); ?></li>
</ul>
<?php
}
}
add_filter('ocean_blog_single_meta','OWP_CPT_single_meta');