Hey folks! I am trying to use the Vortx mobile plugin and Vibe's Trib attribute filtering system on the same site. We're running ASPDotNetStorefront version 8.1.0.0. The main problem I've run into is this line in ShowEntityPage.cs:

Code:
m_XmlPackage = m_EntityHelper.m_TblMgr.CurrentField(n, "XmlPackage").ToLowerInvariant();
The Vortx mobile plugin needs this line to be changed to

Code:
#region Vortx Mobile Xml Package Modification
m_XmlPackage = Vortx.MobileFramework.MobileXmlPackageController.XmlPackageHook(m_EntityHelper.m_TblMgr.CurrentField(n, "XmlPackage").ToLowerInvariant(), m_SkinBase.ThisCustomer);
#endregion
but Vibe Trib wants

Code:
#region Vibe Commerce
m_XmlPackage = GetActiveEntityNodeContext.Element("XmlPackage").Value;
#endregion
I'm not a developer by any means, so I'm not sure how to combine these two. Any takers?