Resolved
Reported for: Toolset Layouts 2.2
Resolved in: 2.4.3
When you style a post with a Content Layout and add a Content Template Cell that “Displays content for a specific page” which in turn calls the post body, you will see the following front-end message:
Other shortcodes like wpv-post-title
will fallback to the current post currently being displayed.
You can use one of the following workarounds:
id=
attribute.id
parameter to the wpv-post-body
shortcode in the native post editor .Example:
<div class="container-fluid ">
<div class="ddl-full-width-row row ">
<div class="col-sm-12 ">[wpv-post-body view_template="content-template-for-layout-for-post-24-layout"] </div>
</div>
</div>
Same example with the added id
(according to your Post ID):
<div class="container-fluid ">
<div class="ddl-full-width-row row ">
<div class="col-sm-12 ">[wpv-post-body view_template="content-template-for-layout-for-post-24-layout" id="2"]</div>
</div>
</div>