I probably will add anything I find there so others can benefit.
The initial issue is simply the jQuery picking up all item elements within the projects and the code accounting for them later on when it should not.
If we only ask the current scene to search for the items then we should only account for those and not others on another layout.
This is a simple fix ( I think)
We can add my extension to the head file ( little over kill) and use it's scene element property.
//--GET SCENE INFO
var sceneInfo = hypeDocument.sceneInfo()
//--GET SCENE ELEMENT
var current_sceneElement = sceneInfo.sceneElement
//--GET ALL THE ITEM ELEMENTS
var elementItems = current_sceneElement.querySelectorAll("div.item.col-md-3") // $("div.item.col-md-3");
//--GET ALL THE TAG BUTTON ELEMENTS
var activeTagList = current_sceneElement.querySelectorAll("div.HYPE_element.tag.show") //$("div.HYPE_element.tag.show");
mh_Tags_v5.hype.zip (275.4 KB)
But there appears to be another issue. The second layout hides all items when any button is selected??