Hi,
Since the last release, I’ve detected a huge regression.
I use Tangible template in custom posts types layouts powered by Beaver Builder+Themer.
Here is the context :
I have a custom Beaver Themer layout attached to my custom post type. In this layout, I have a Beaver Builder HTML module containing this shortcode [template id=200].
In this Tangible template id=200, I have something simple :
<div id="content"><Field content /></div>
Before the 30 dec 2022 release, for a post_id=1, the Tangible Template displayed correctly the content of post_id=1
After the release, the same Tangible Template in the same custom post (id=1) displays the content of post_id=2 … for no reason !!!
I had to find a quick fix before a patch release. Here is the solution I found :
In my BB module I changed my Tangible Template shortcode with this : [template id=200 post_id="[wpbb post:id]"]
and in my Tangible Template I’ve added the loop tag to force getting the current post id :
<Loop id="{Get local=post_id}">
<div id="content_alt"><Field content /></div>
</Loop>
It seems that your loops scope have changed - or broked - so I have to force it. Could you fix it please ?
Best
Guillaume