Hi Metabox,
Why the post title is not showing only the custom fields?
{% set args = { post_type: "services", posts_per_page: 6 } %}
{% set posts = mb.get_posts( args ) %}
{% for post in posts %}
<div class="services-list-container">
<div class="services-list">
<!-- not showing -->
<h2 class="services-list--item__title">{{ post.title }} </h2>
</div>
<div class="services-list">
<h3 class="services-list--item__desc">{{ post.text_b3exl4mxodu }}</h3>
</div>
<div class="services-list">
<div class="services-list--item">
<a href="" class="services-list--item__btn">View Route <img src="/wp-content/uploads/2021/12/arrow-white.svg" width="auto" height="auto"></a>
</div>
</div>
</div>
{% endfor %}