Hello!
I've tried searching this forum and it looks like others have had this question before, but the given solution wouldn't work in my case :(
What I'm trying to do is merge a blocks that have a parent block (after the parent is generated of course). Basically I have an array:
$items = array(
[0] => array(
'name' => 'Item name',
'desc' => 'Item description',
'pictures' => array(
[0] => "picture1",
[1] => "picture2" //etc
)
)
[1] => array ( // same thing, item properties and a list of pictures )
)
|
So basically I have to output that structure - each item's properties one of which is a list (pictures in my case)
Is there a simple way to do that using TBS?
Thanks