\r\n \r\nContained Home Organizers are one of the company's personalized experiences, providing in-home consultation to create a customized space design and organization plan for a $75 consultation fee, which is credited back when a customer purchases $500 in products. The company reports its contained home average ticket is approximately $2500, much higher than its every day average ticket of approximately $60. \r\n \r\n\"We are rapidly contracting with more and more contained home organizers in each of our markets and we're now up to 130 fabulous experienced organizers to date, and satisfaction with our contained home service and our organizers is high with over 90 percent of our customers giving the service of four or five, out of five stars on our follow-up survey,\" said Melissa Reiff, President and COO. \r\n \r\nContained Home was available in 47 stores at the end of the company's first quarter, and is expected to roll out to all stores by the end of fiscal 2015. The program will be supported by national marketing campaign that includes advertising and home design magazines and direct mail, online presence, social media and public relations. \r\n \r\n\"Our customers look to us as the experts who can deliver on the promise of an organized life that all the wonderful benefits that come with an organized life, less stress, more productivity and more time to live life to the fullest, whether it's a beautiful custom TCS closet and in home visit from one of our contained home organizers on efficient, enjoyable mobile experience, we look for every opportunity to enhance and improve each facet of our customer's experience and thus our business through employee training, product differentiation and innovative technology,\" said Tindell. \r\n \r\nThe company's loyalty program POP!, Perfectly Organized Perks, reached more than two million members in the first quarter, since launching in July of 2014, adding about 25,000 members each week. \r\n \r\n\"As we enter this next phase of POP!, we will further capitalize on our customer data to create even deeper and more one on one customized connections and offers and conversations with our POP! Stars,\" said Reiff. \r\n\"It's becoming kind of a new way in which we most effectively communicate with and engage with and inspire our customers. It will become the center of our customer's experience with our brand. \r\n \r\n\"We will use the insights we have from each customer to guide them along their organization journey to personalize tips and product solutions most relevant to their individual life styles and we're going to continue to entice them to shop with us and we wore them along the way with exclusive access, perks, events and insights into their favorite brand in order to really deepen our engagement and their royalty.\" \r\n \r\nThe Container Store also offers Click & Pick Up, which allows customers to use their smartphones to tell the store when they are in the parking lot, so employees can immediately bring their products out to the car. \r\n \r\n\"We're optimistic about where we're headed with fiscal 2015 serving as an investment year with the implementation of our major strategic initiatives continuing to roll out and mature,\" said Tindell. \"We remain confident in maintaining our previously stated and EPS outlook for the fiscal year.\" \r\n"}]}};
const country = "US";
const language = "en-US,en;q=0.5";
const SITE_LANGUAGE = "en";
const siteName = "RIS News";
const userRoles = ["anonymous"];
const userUid = 0;
const indexName = "risnews";
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 = `${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);
}
})();
Container Store Focuses on Personalized Experience
Container Store Focuses on Personalized Experience
Jamie Grill-Goodman
7/10/2015
The Container Store Group, Inc. has a "laser like focus on our customer experience," according to CEO and Chairman William A. Tindell, III, and it is serving the company well.
Contained Home Organizers are one of the company's personalized experiences, providing in-home consultation to create a customized space design and organization plan for a $75 consultation fee, which is credited back when a customer purchases $500 in products. The company reports its contained home average ticket is approximately $2500, much higher than its every day average ticket of approximately $60.
"We are rapidly contracting with more and more contained home organizers in each of our markets and we're now up to 130 fabulous experienced organizers to date, and satisfaction with our contained home service and our organizers is high with over 90 percent of our customers giving the service of four or five, out of five stars on our follow-up survey," said Melissa Reiff, President and COO.
Contained Home was available in 47 stores at the end of the company's first quarter, and is expected to roll out to all stores by the end of fiscal 2015. The program will be supported by national marketing campaign that includes advertising and home design magazines and direct mail, online presence, social media and public relations.
"Our customers look to us as the experts who can deliver on the promise of an organized life that all the wonderful benefits that come with an organized life, less stress, more productivity and more time to live life to the fullest, whether it's a beautiful custom TCS closet and in home visit from one of our contained home organizers on efficient, enjoyable mobile experience, we look for every opportunity to enhance and improve each facet of our customer's experience and thus our business through employee training, product differentiation and innovative technology," said Tindell.
The company's loyalty program POP!, Perfectly Organized Perks, reached more than two million members in the first quarter, since launching in July of 2014, adding about 25,000 members each week.
"As we enter this next phase of POP!, we will further capitalize on our customer data to create even deeper and more one on one customized connections and offers and conversations with our POP! Stars," said Reiff.
"It's becoming kind of a new way in which we most effectively communicate with and engage with and inspire our customers. It will become the center of our customer's experience with our brand.
"We will use the insights we have from each customer to guide them along their organization journey to personalize tips and product solutions most relevant to their individual life styles and we're going to continue to entice them to shop with us and we wore them along the way with exclusive access, perks, events and insights into their favorite brand in order to really deepen our engagement and their royalty."
The Container Store also offers Click & Pick Up, which allows customers to use their smartphones to tell the store when they are in the parking lot, so employees can immediately bring their products out to the car.
"We're optimistic about where we're headed with fiscal 2015 serving as an investment year with the implementation of our major strategic initiatives continuing to roll out and mature," said Tindell. "We remain confident in maintaining our previously stated and EPS outlook for the fiscal year."