\r\n\t \r\n\tThe store, in Manhattan’s Flatiron district, reflects the easy-going, laid-back approach of the merchandise on display, with a design that evokes a soft, clean feeling. It features marble tables and fitting rooms that evoke a lounge space – floating curtains in linen with pink velvet stools. \r\n\t \r","showSummary":null,"url":"/news/first-look-lou-grey-new-york","date":"2016-09-09T00:00:00","author":{"email":null,"uname":"Anonymous","firstName":null,"lastName":null,"bio":null,"title":null,"picture":null,"phone":null,"contactForm":null},"digitalEdition":null,"sponsored":false,"taggedPro":null,"teaserImage":{"id":67801,"url":"https://assets1.chainstoreage.com/styles/secondary_articles_short/s3/teaser_image_64206.jpg?itok=FA_7gT99","width":767,"height":575,"alt":null},"topics":[{"name":"News","url":"/news"},{"name":"DESIGN/CONSTRUCTION","url":"/designconstruction"},{"name":"Trending Stores","url":"/trending-stores"}],"attachedFiles":[]},{"title":"First Look: Target’s new 'Connected Living' in-store pilot","id":53122,"bundle":"article","summary":"\r\n\tTarget Corp. is testing some of the concepts from its innovative Open House format in San Francisco in a traditional store setting.\r\n\r\n\t \r\n\r\n\tThe discounter has debuted Connected Living, an in-store experience dedicated to showing customers how connected products can work together to make life easier, more convenient and more efficient. The test is taking place in Target’s Ridgedale location in Minnetonka, Minnesota. \r\n\r\n\t \r\n\r","showSummary":null,"url":"/news/first-look-targets-new-connected-living-store-pilot","date":"2016-06-10T00:00:00","author":{"email":null,"uname":"Anonymous","firstName":null,"lastName":null,"bio":null,"title":null,"picture":null,"phone":null,"contactForm":null},"digitalEdition":null,"sponsored":false,"taggedPro":null,"teaserImage":null,"topics":[{"name":"News","url":"/news"},{"name":"DESIGN/CONSTRUCTION","url":"/designconstruction"},{"name":"Trending Stores","url":"/trending-stores"}],"attachedFiles":[]},{"title":"And the Store of the Year is…","id":54206,"bundle":"article","summary":null,"showSummary":null,"url":"/store-spaces/and-store-year-2017","date":"2016-03-23T00:00:00","author":{"email":null,"uname":"Anonymous","firstName":null,"lastName":null,"bio":null,"title":null,"picture":null,"phone":null,"contactForm":null},"digitalEdition":null,"sponsored":false,"taggedPro":null,"teaserImage":{"id":57506,"url":"https://assets1.chainstoreage.com/styles/secondary_articles_short/s3/teaser_image_39963.jpg?itok=RzLBNcjv","width":767,"height":575,"alt":null},"topics":[{"name":"News","url":"/news"},{"name":"STORE SPACES","url":"/store-spaces"},{"name":"DESIGN/CONSTRUCTION","url":"/designconstruction"}],"attachedFiles":[]}]},"title":"DESIGN/CONSTRUCTION","contentParagraphs":null,"sections":null};
const country = "HK";
const language = "en, *";
const SITE_LANGUAGE = "en";
const siteName = "Chain Store Age";
const userRoles = ["anonymous"];
const userUid = 0;
const indexName = "CSA";
const title = "DESIGN/CONSTRUCTION | Chain Store Age";
window.dataLayer = window.dataLayer || [];
const data = {};
data.entityTaxonomy = {};
const contentTypes = [
"article",
"blog",
"bulletin",
"embed_page",
"landing_page",
"event",
"image",
"page",
"product",
"whitepaper",
"video",
"tags",
];
if (
routeInfo &&
"bundle" in routeInfo &&
contentTypes.includes(routeInfo["bundle"])
) {
data.entityBundle = routeInfo.bundle;
data.entityTitle = title || `${routeInfo.title} | ${siteName}`;
data.entityId = routeInfo.id;
data.entityName = routeInfo.author?.uname;
data.entityCreated = routeInfo.created;
data.sponsored = routeInfo.sponsored;
data.sponsor = routeInfo.sponsoringCompany;
data.entityType = "node";
data.entityLangcode = SITE_LANGUAGE;
data.siteName = siteName;
data.drupalLanguage = language;
data.drupalCountry = country;
data.userRoles = userRoles;
data.userUid = userUid;
data.entityTaxonomyKeys = {};
data.entityTaxonomyHierarchies = {};
data.parentNaicsCode = {};
data.isPro = false;
data.algoliaIndexName = indexName;
// Add toxonomy data
const taxonomies = {
businessTopic: "business_topic",
contentType: "content_type",
company: "company",
marketSegment: "market_segment",
};
const getHierarchy = (term, terms = []) => {
terms.push({ id: term.id, name: term.name });
if (term.parentTerm != null) {
getHierarchy(term.parentTerm, terms);
}
return terms;
};
const getTerms = (term, useApiId = false) => {
return { id: useApiId ? term.apiId : term.id, name: term.name };
};
const getKeys = (term) => {
return { id: term.id, name: term.apiId };
};
Object.entries(taxonomies).forEach(([key, item]) => {
terms = routeInfo[key];
if (terms && terms.length > 0) {
data["entityTaxonomy"][item] = terms.map((term) =>
getTerms(term, key === "company")
);
if (key !== "company") {
data["entityTaxonomyKeys"][item] = terms.map(getKeys);
termGroups = [];
terms.forEach((term, termInd) => {
termGroups[termInd] = getHierarchy(term);
});
data["entityTaxonomyHierarchies"][item] = termGroups;
}
}
});
data["entityTaxonomy"]["tags"] = routeInfo["topics"] || [];
// Primary Topic is either the business topic or the top tag.
if (routeInfo["businessTopic"]?.length > 0) {
data["entityPrimaryTopic"] = routeInfo["businessTopic"][0]["name"];
} else {
if (routeInfo["topics"]?.length > 0) {
data["entityPrimaryTopic"] = routeInfo["topics"][0]["name"];
}
}
// Primary and secondary entityNaicsCodes come from the MarketSegment
if (routeInfo.marketSegment?.length > 0) {
data.entityNaicsCode = {};
data["entityNaicsCode"]["id"] = routeInfo["marketSegment"][0]["id"];
data["entityNaicsCode"]["name"] =
routeInfo["marketSegment"][0]["naicsCode"];
if (routeInfo["marketSegment"][0]["parentTerm"] != null) {
data["parentNaicsCode"]["id"] =
routeInfo["marketSegment"][0]["parentTerm"]["id"];
data["parentNaicsCode"]["name"] =
routeInfo["marketSegment"][0]["parentTerm"]["naicsCode"];
}
} else {
data.entityNaicsCode = [];
}
if (routeInfo.taggedPro) {
data.isPro = routeInfo.taggedPro;
}
window.dataLayer.push(data);
} else if (routeInfo && "vid" in routeInfo) {
data.entityBundle = "tags";
data.entityTitle = routeInfo.name;
data.entityId = routeInfo.id;
data.entityName = routeInfo.author?.uname;
data.entityCreated = routeInfo.created;
data.entityType = "taxonomy_term";
data.entityLangcode = SITE_LANGUAGE;
data.siteName = siteName;
data.sponsored = routeInfo.sponsored;
data.sponsor = routeInfo.sponsoringCompany;
data.drupalLanguage = language;
data.drupalCountry = country;
data.userRoles = userRoles;
data.userUid = userUid;
data.algoliaIndexName = indexName;
data["entityTaxonomy"]["tags"] = {
id: routeInfo["id"],
name: routeInfo["name"],
};
window.dataLayer.push(data);
}
})();
DESIGN/CONSTRUCTION | Chain Store Age
Anthropologie’ s experiential retailing concept takes center stage under its new store banner, Anthropologie & Co., with the first-ever location now open in Walnut Creek, Calif.
The 30,000-sq.-ft. store is a visual treat, and features fully decorated showrooms, filled to the brim with custom furniture.
AT&T is pulling out all the stops in San Francisco, opening its largest, most elaborate and most tech-centered store to date.
The new, two-level 24,000-sq.-ft. flagship is housed in an historic building located next to the busy and popular cable car turnaround on Powell Street. Constructed in 1908, the building has been restored from floor to ceiling back to its original Baroque architectural design.
First Look: Lou & Grey, New York The more casual sister of Loft and Ann Taylor has opened its first location in New York City.
The store, in Manhattan’s Flatiron district, reflects the easy-going, laid-back approach of the merchandise on display, with a design that evokes a soft, clean feeling. It features marble tables and fitting rooms that evoke a lounge space – floating curtains in linen with pink velvet stools.
First Look: Target’s new 'Connected Living' in-store pilot
Target Corp. is testing some of the concepts from its innovative Open House format in San Francisco in a traditional store setting.
The discounter has debuted Connected Living, an in-store experience dedicated to showing customers how connected products can work together to make life easier, more convenient and more efficient. The test is taking place in Target’s Ridgedale location in Minnetonka, Minnesota.
X
This ad will auto-close in 10 seconds