\" plugin_version.type = \"hidden\" form.appendChild(plugin_version) var wordpress_version = document.createElement(\"input\") wordpress_version.name = \"wordpress_version\" wordpress_version.id = \"wordpress_version\" wordpress_version.value = '$wp_version' wordpress_version.type = \"hidden\" form.appendChild(wordpress_version) } },200); "; } else { echo ''; } } else { echo ''; } } else { echo ""; return; } } } /** * Google analytics . */ function ga_footer() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { $banner_discarded_count = get_option( 'sm_beta_banner_discarded_count' ); if ( 1 === $banner_discarded_count || '1' === $banner_discarded_count ) { echo ''; } } } /** * Check if the requirements of the sitemap plugin are met and loads the actual loader * * @package sitemap * @since 4.0 */ function sm_setup() { $fail = false; // Check minimum PHP requirements, which is 5.2 at the moment. if ( version_compare( PHP_VERSION, '5.2', '<' ) ) { add_action( 'admin_notices', 'sm_add_php_version_error' ); $fail = true; } // Check minimum WP requirements, which is 3.3 at the moment. if ( version_compare( $GLOBALS['wp_version'], '3.3', '<' ) ) { add_action( 'admin_notices', 'sm_add_wp_version_error' ); $fail = true; } if ( ! $fail ) { require_once trailingslashit( dirname( __FILE__ ) ) . 'class-googlesitemapgeneratorloader.php'; } } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_wp_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your WordPress version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least WordPress %4$s. You are using WordPress %2$s, which is out-dated and insecure. Please upgrade or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', esc_html( $GLOBALS['wp_version'] ), 'http://www.arnebrachhold.de/redir/sitemap-home/', '3.3' ) ) . '

'; } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_php_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your PHP version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least PHP %4$s. You are using PHP %2$s, which is out-dated and insecure. Please ask your web host to update your PHP installation or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', PHP_VERSION, 'http://www.arnebrachhold.de/redir/sitemap-home/', '5.2' ) ) . '

'; } /** * Returns the file used to load the sitemap plugin * * @package sitemap * @since 4.0 * @return string The path and file of the sitemap plugin entry point */ function sm_get_init_file() { return __FILE__; } /** * Register beta user consent function. */ function register_consent() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { if ( is_user_logged_in() && current_user_can( 'manage_options' ) ) { if ( isset( $_POST['user_consent_yes'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'yes' ); } } if ( isset( $_POST['user_consent_no'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'no' ); } } if ( isset( $_GET['action'] ) ) { if ( 'no' === $_GET['action'] ) { if ( $_SERVER['QUERY_STRING'] ) { if( strpos( $_SERVER['QUERY_STRING'], 'google-sitemap-generator' ) ) { update_option( 'sm_show_beta_banner', 'false' ); $count = get_option( 'sm_beta_banner_discarded_count' ); if ( gettype( $count ) !== 'boolean' ) { update_option( 'sm_beta_banner_discarded_count', (int) $count + 1 ); } else { add_option( 'sm_beta_banner_discarded_on', gmdate( 'Y/m/d' ) ); update_option( 'sm_beta_banner_discarded_count', (int) 1 ); } GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } } if ( isset( $_POST['enable_updates'] ) ) { if (isset($_POST['enable_updates_nonce_token']) && check_admin_referer('enable_updates_nonce', 'enable_updates_nonce_token')){ if ( 'true' === $_POST['enable_updates'] ) { $auto_update_plugins = get_option( 'auto_update_plugins' ); if ( ! is_array( $auto_update_plugins ) ) { $auto_update_plugins = array(); } array_push( $auto_update_plugins, 'google-sitemap-generator/sitemap.php' ); update_option( 'auto_update_plugins', $auto_update_plugins ); } elseif ( 'false' === $_POST['enable_updates'] ) { update_option( 'sm_hide_auto_update_banner', 'yes' ); } } } /* if ( isset( $_POST['disable_plugin'] ) ) { if (isset($_POST['disable_plugin_sitemap_nonce_token']) && check_admin_referer('disable_plugin_sitemap_nonce', 'disable_plugin_sitemap_nonce_token')){ if ( strpos( $_POST['disable_plugin'], 'all_in_one' ) !== false ) { $default_value = 'default'; $aio_seo_options = get_option( 'aioseo_options', $default_value ); if ( $aio_seo_options !== $default_value ) { $aio_seo_options = json_decode( $aio_seo_options ); $aio_seo_options->sitemap->general->enable = 0; update_option( 'aioseo_options', json_encode( $aio_seo_options ) ); } } elseif( strpos( $_POST['disable_plugin'], 'wp-seo' ) !== false ) { $yoast_options = get_option( 'wpseo' ); $yoast_options['enable_xml_sitemap'] = false; update_option( 'wpseo', $yoast_options ); } } } */ } } $updateUrlRules = get_option('sm_options'); if(!isset($updateUrlRules['sm_b_rewrites2']) || $updateUrlRules['sm_b_rewrites2'] == false){ GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); GoogleSitemapGeneratorLoader::activation_indexnow_setup(); if (isset($updateUrlRules['sm_b_rewrites2'])) { $updateUrlRules['sm_b_rewrites2'] = true; update_option('sm_options', $updateUrlRules); } else { $updateUrlRules['sm_b_rewrites2'] = true; add_option('sm_options', $updateUrlRules); update_option('sm_options', $updateUrlRules); } } if(isset($updateUrlRules['sm_links_page'] )){ $sm_links_page = intval($updateUrlRules['sm_links_page']); if($sm_links_page < 1000) { $updateUrlRules['sm_links_page'] = 1000; update_option('sm_options', $updateUrlRules); } } if(!isset($updateUrlRules['sm_b_activate_indexnow']) || $updateUrlRules['sm_b_activate_indexnow'] == false){ $updateUrlRules['sm_b_activate_indexnow'] = true; $updateUrlRules['sm_b_indexnow'] = true; update_option('sm_options', $updateUrlRules); } } function disable_plugins_callback(){ if (current_user_can('manage_options')) { check_ajax_referer('disable_plugin_sitemap_nonce', 'nonce'); $pluginList = sanitize_text_field($_POST['pluginList']); $pluginsToDisable = explode(',', $pluginList); foreach ($pluginsToDisable as $plugin) { if ($plugin === 'all-in-one-seo-pack/all_in_one_seo_pack.php') { /* all in one seo deactivation */ $aioseo_option_key = 'aioseo_options'; if ($aioseo_options = get_option($aioseo_option_key)) { $aioseo_options = json_decode($aioseo_options, true); $aioseo_options['sitemap']['general']['enable'] = false; update_option($aioseo_option_key, json_encode($aioseo_options)); } } if ($plugin === 'wordpress-seo/wp-seo.php') { /* yoast sitemap deactivation */ if ($yoast_options = get_option('wpseo')) { $yoast_options['enable_xml_sitemap'] = false; update_option('wpseo', $yoast_options); } } if ($plugin === 'jetpack/jetpack.php') { /* jetpack sitemap deactivation */ $modules_array = get_option('jetpack_active_modules'); if(is_array($modules_array)) { if (in_array('sitemaps', $modules_array)) { $key = array_search('sitemaps', $modules_array); unset($modules_array[$key]); update_option('jetpack_active_modules', $modules_array); } } } if ($plugin === 'wordpress-sitemap') { /* Wordpress sitemap deactivation */ $options = get_option('sm_options', array()); if (isset($options['sm_wp_sitemap_status'])) $options['sm_wp_sitemap_status'] = false; else $options['sm_wp_sitemap_status'] = false; update_option('sm_options', $options); } } echo 'Plugins sitemaps disabled successfully'; wp_die(); } } function conflict_plugins_admin_notice(){ GoogleSitemapGeneratorLoader::create_notice_conflict_plugin(); } /* send to index updated url */ function indexnow_after_post_save($new_status, $old_status, $post) { $indexnow = get_option('sm_options'); $indexNowStatus = isset($indexnow['sm_b_indexnow']) ? $indexnow['sm_b_indexnow'] : false; if ($indexNowStatus === true) { $newUrlToIndex = new GoogleSitemapGeneratorIndexNow(); $is_changed = false; $type = "add"; if ($old_status === 'publish' && $new_status === 'publish') { $is_changed = true; $type = "update"; } else if ($old_status != 'publish' && $new_status === 'publish') { $is_changed = true; $type = "add"; } else if ($old_status === 'publish' && $new_status === 'trash') { $is_changed = true; $type = "delete"; } if ($is_changed) $newUrlToIndex->start(get_permalink($post)); } } // Don't do anything if this file was called directly. if ( defined( 'ABSPATH' ) && defined( 'WPINC' ) && ! class_exists( 'GoogleSitemapGeneratorLoader', false ) ) { sm_setup(); if(isset(get_option('sm_options')['sm_wp_sitemap_status']) ) $wp_sitemap_status = get_option('sm_options')['sm_wp_sitemap_status']; else $wp_sitemap_status = true; if($wp_sitemap_status = true) $wp_sitemap_status = '__return_true'; else $wp_sitemap_status = '__return_false'; add_filter( 'wp_sitemaps_enabled', $wp_sitemap_status ); add_action('wp_ajax_disable_plugins', 'disable_plugins_callback'); add_action('admin_notices', 'conflict_plugins_admin_notice'); } reputation – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Sun, 07 May 2023 17:54:46 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 A-B marketing reputation takes a huge hit with Bud Light misstep https://cbomo.com/a-b-marketing-reputation-takes-a-huge-hit-with-bud-light-misstep/ https://cbomo.com/a-b-marketing-reputation-takes-a-huge-hit-with-bud-light-misstep/#respond Sun, 07 May 2023 17:54:46 +0000 https://cbomo.com/a-b-marketing-reputation-takes-a-huge-hit-with-bud-light-misstep/ [ad_1]

For years, Budweiser was the King of Beers and Anheuser-Busch was the King of Marketing. Its commercials on television, radio and print were the envy of the advertising world.

Now, a single promotional initiative gone awry threatens the company’s standing as a marketing machine.

Bud Light is the top-selling beer in America, but its frothy sales have taken a massive hit in the past month. A short TikTok video by transgender influencer Dylan Mulvaney, and a single can of beer with her face on it, has brought the once-mighty A-B marketing machine crashing to the ground.

“It basically was a post from an influencer that got blown very far out of proportion. It has been adopted by a certain section of the country as the calling card for anti-trans (support). They’re calling to boycott Bud Light,” said David Steinman, vice president and executive editor of industry publication Beer Marketer’s Insights.

People are also reading…

The informal boycott has been successful, slashing the brand’s sales by as much as 26% in a single week. If the trend continues, Bud Light could lose its position as the No. 1 beer in America, said Bump Williams of Bump Williams Consulting, which specializes in the alcoholic beverage industry.

“It’s self-inflicted,” said Robert Lachky, former chief creative officer at Anheuser-Busch.

Called “One of adworld’s greatest fixtures” by AdAge magazine, Lachky worked on the “Whassup?!” and frogs campaigns, as well as the iconic Clydesdale ads of the 1990s and 2000s and “Real Men of Genius,” which received more awards than any other radio campaign.

“It’s a complete lack of corporate oversight, and it’s been that way since (InBev) took the company over,” he said.

InBev, a Belgian-based international brewery, bought Anheuser-Busch in 2009 and forced out many executives, including Lachky, and overhauled the marketing staff.

“Effectively, it took us 20 years to take Bud Light beer to the No. 1 beer in the country, and it took them one week to dismantle it,” Lachky said.

Anheuser-Busch was flying high in 1979, when it launched one of the most effective and memorable taglines of all time, “This Bud’s for you.”

That campaign was followed by one hit after another. Three frogs croaking “Bud,” “Weis” and “Errrrr” proved to be enduringly popular — a writer at Adweek later called it one of the “most iconic alcohol campaigns in advertising history.”

A campaign featuring friends calling each other and saying “Whassup?” followed, and was an equally huge hit.

Sales soared. At its peak, in 1988, Anheuser-Busch brewed more than 50 million barrels of Bud. And when the brand slipped to No. 2 in 2001, the beer that surpassed it was Bud Light.

Bud Light’s current tagline, “Easy to drink, easy to enjoy” was unveiled February in a commercial that aired during the 2023 Super Bowl. In an earnings call with investors and analysts on Thursday, A-B InBev chief executive officer Michel Doukeris called the tagline “a strong message for Bud Light.”

Perry Drake, who teaches marketing at the University of Missouri-St. Louis, disagrees.

“It sounds like a tagline for a nice glass of white wine if you ask me. Not Bud Light,” he said.

{p class=”p3”}But that is a potential minor misstep compared to the apparent marketing faceplant of working with a transgender influencer. That problem was then compounded by the brand’s marketing director, who is now on a leave of absence, insinuating that Bud Light drinkers are all frat boys.

The marketing director’s remarks were an unforced error, but the idea of appealing to the LGBTQ community was fine and well-intentioned, Drake said.

“I think it was executed really badly. They broke one of the rules of influencer marketing, and that is to make sure your influencer aligns with your customer segment,” he said.

The mistake shocked him, because the marketing people at Anheuser-Busch pride themselves for knowing their customers well and engaging with them, he said.

“If you want to work with the LGBTQ community, there are ways to do that. You could release rainbow-colored cans during Pride Week, and (customers) could buy them or not, as they choose,” Drake said.

“It’s Marketing 101, as far as I’m concerned.”

Pier Yvette Alsup, teaches a class in inclusive marketing strategies at Washington University. She said that the idea of using a transgender influencer to promote Bud Light was smart and forward-thinking, a way to reach new customers.

“If you’re trying to reach a new market or an emergent market and you’re looking at what’s changing in terms of demographics, you should be aware of their values,” she said.

Appealing to young beer-drinkers made sense from a marketing point of view, she said.

“(But) I think the timing may not have been ideal. Reading the room, we as Americans are in a hyperpolitical period,” she said.

Alsup cited a 2021 survey by the Bauer Leadership Center at Washington University and Vrity in which 55% of respondents said they paid more attention to the political stands of companies than they did just one year before.

Generations X, Y and Z — people born between 1965 and 2012 — were especially inclined to look at a brand’s values before purchasing.

Getting through the crisis and restoring some of the lost business will require a corporate mea culpa.

“You go out there and you say, ‘We don’t always get things right even with the best intentions. But there’s always room for improvement as a company and we’re always learning new things. And we want to keep the lines of communication open,’” Alsup said.

Drake, at UMSL, said he thought it would be best for Anheuser-Busch to keep quiet and let the controversy die out. The overall impact on the company should be minimal, he said.

“In the long term, I think it will be forgotten. It will just be something that will show up when you Google ‘the 10 worst marketing campaigns ever.’”

Trans activist and social media star Dylan Mulvaney claps back at haters following her partnerships with Bud Light and Nike. Howard Stern recently voiced his support for the TikToker.



[ad_2]

Source link

]]>
https://cbomo.com/a-b-marketing-reputation-takes-a-huge-hit-with-bud-light-misstep/feed/ 0