\n \nThe survey of 1,000 consumers in the 10 largest cities nationwide shows that consumers are increasingly wary of the safety of food purchased at grocery stores, and their confidence in - and trust of - food retailers, manufacturers and grocers is declining. \n \nThe Debilitating Impact of Recalls \n83 percent of respondents were able to name a food product that was recalled in the past two years due to contamination or other safety concerns. Nearly half of survey respondents - 46 percent - named peanut butter, the staple of school lunches for children across the nation, as the most recognizable recall. Spinach came in a distant second, with 15 percent awareness nearly two years after the incident. \n \nConsumers are proving to be extra cautious in purchasing food products after a recall. 49 percent of the respondents would be less likely to purchase a food product again if it was recalled due to contamination. 63 percent of respondents confirmed they would not buy the food until the source of contamination had been found and addressed. Meanwhile, eight percent of respondents said they would never purchase the food again, even after the source of contamination was found and addressed. \n \nThese findings underscore how the rise in recalls and contamination has significantly eroded consumer confidence in food and product safety, as well as with the companies that manufacture and distribute these products. \n \nChanging Consumer Behaviors \n63 percent of respondents report they have purposefully changed their grocery shopping behavior in the past two years because they wanted better value for their money. And almost half have changed shopping behavior to access fresher foods (45 percent) or better quality foods (43 percent). \n \nWhere is My Food From? \nThe survey found that over the past two years, consumer appetite for information about food products increased. 77 percent of consumers want more information about the content of the food products they purchase, and 76 percent would like more information about its origin. 74 percent are willing to dig deeper and seek more data about how the food products are grown, processed and manufactured. Despite industry efforts to keep consumers informed with more detailed product information, there's still a significant gap between consumer expectations and what retailers/manufacturers are providing. \n \nThe survey also found that consumers are spending more time poring over food labels to know which ingredients were used, questioning supermarkets and product manufactures about product detail, paying closer attention to expiration dates, and doing more in depth background checks on specific food brands and their origin. This will have an even bigger impact as the younger, more Internet savvy generation of consumers evolve into being the primary purchasers of groceries. \n \nAn estimated 76 million people in the United States get sick every year with food borne illness and 5,000 die, according to the U.S. Centers for Disease Control and Prevention. Food safety is top of mind for governments, retailers, manufacturers and consumers alike, and in fact, President Obama's proposed budget includes $1 billion for the FDA to spend on improving food safety. More than 600 bills addressing food safety have been introduced in state legislatures since January 2009. \n \nAre Food Retailers and Manufacturers Looking Out for Me? \n55 percent of respondents trust food manufacturers when handling a recall in the event that a food product is contaminated, indicating a decrease in their level of trust over the past two years. Meanwhile, 72 percent said they trust the store where they buy groceries to properly handle food product contamination recalls. \n \n57 percent of consumers report they've stopped purchasing certain foods, even for a short time, within the past two years due to safety considerations. \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);
}
})();
Less Than 20 Percent of Consumer Trust Food They Buy
Less Than 20 Percent of Consumer Trust Food They Buy
6/30/2009
Less than 20 percent of consumers trust food companies to develop and sell food products that are safe and healthy for themselves and their families according to a new IBM Study. The study also shows that 60 percent of consumers are concerned about the safety of food they purchase, and 63 percent are knowledgeable about the content of the food they buy.
The survey of 1,000 consumers in the 10 largest cities nationwide shows that consumers are increasingly wary of the safety of food purchased at grocery stores, and their confidence in - and trust of - food retailers, manufacturers and grocers is declining.
The Debilitating Impact of Recalls
83 percent of respondents were able to name a food product that was recalled in the past two years due to contamination or other safety concerns. Nearly half of survey respondents - 46 percent - named peanut butter, the staple of school lunches for children across the nation, as the most recognizable recall. Spinach came in a distant second, with 15 percent awareness nearly two years after the incident.
Consumers are proving to be extra cautious in purchasing food products after a recall. 49 percent of the respondents would be less likely to purchase a food product again if it was recalled due to contamination. 63 percent of respondents confirmed they would not buy the food until the source of contamination had been found and addressed. Meanwhile, eight percent of respondents said they would never purchase the food again, even after the source of contamination was found and addressed.
These findings underscore how the rise in recalls and contamination has significantly eroded consumer confidence in food and product safety, as well as with the companies that manufacture and distribute these products.
Changing Consumer Behaviors
63 percent of respondents report they have purposefully changed their grocery shopping behavior in the past two years because they wanted better value for their money. And almost half have changed shopping behavior to access fresher foods (45 percent) or better quality foods (43 percent).
Where is My Food From?
The survey found that over the past two years, consumer appetite for information about food products increased. 77 percent of consumers want more information about the content of the food products they purchase, and 76 percent would like more information about its origin. 74 percent are willing to dig deeper and seek more data about how the food products are grown, processed and manufactured. Despite industry efforts to keep consumers informed with more detailed product information, there's still a significant gap between consumer expectations and what retailers/manufacturers are providing.
The survey also found that consumers are spending more time poring over food labels to know which ingredients were used, questioning supermarkets and product manufactures about product detail, paying closer attention to expiration dates, and doing more in depth background checks on specific food brands and their origin. This will have an even bigger impact as the younger, more Internet savvy generation of consumers evolve into being the primary purchasers of groceries.
An estimated 76 million people in the United States get sick every year with food borne illness and 5,000 die, according to the U.S. Centers for Disease Control and Prevention. Food safety is top of mind for governments, retailers, manufacturers and consumers alike, and in fact, President Obama's proposed budget includes $1 billion for the FDA to spend on improving food safety. More than 600 bills addressing food safety have been introduced in state legislatures since January 2009.
Are Food Retailers and Manufacturers Looking Out for Me?
55 percent of respondents trust food manufacturers when handling a recall in the event that a food product is contaminated, indicating a decrease in their level of trust over the past two years. Meanwhile, 72 percent said they trust the store where they buy groceries to properly handle food product contamination recalls.
57 percent of consumers report they've stopped purchasing certain foods, even for a short time, within the past two years due to safety considerations.