I am trying to: Edit my content template
Link to a page where the issue can be seen: hidden link
I expected to see: An email icon in the title bar the second content template on this page
Instead, I got: A link to website
Hello,
Thanks for the details, I can log into your website, I assume we are talking about the post view "Single line":
hidden link
In section "Loop Editor", you are using below codes:
<div class="row ">
<div class="col-sm-3">[wpv-post-body view_template="loop-item-in-listings"]</div>
[wpv-item index=other]
<div class="col-sm-3">[wpv-post-body view_template="loop-item-in-listings"]</div>
[wpv-item index=4]
<div class="col-sm-3">[wpv-post-body view_template="loop-item-in-listings"]</div>
</div>
It is loading content template "loop-item-in-listings".
But in section "Templates for this View", there is another content template: Loop item in Single line.
They are different content templates.
So it conduct the problem you mentioned above:
Changes to content template not working
I suggest you try to modify above codes to:
<div class="row ">
<div class="col-sm-3">[wpv-post-body view_template="loop-item-in-single-line"]</div>
[wpv-item index=other]
<div class="col-sm-3">[wpv-post-body view_template="loop-item-in-single-line"]</div>
[wpv-item index=4]
<div class="col-sm-3">[wpv-post-body view_template="loop-item-in-single-line"]</div>
</div>
And test again.
My issue is resolved now. Thank you!