\" 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'); } companys – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Thu, 13 Apr 2023 18:59:44 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 McKinsey & Company’s Annual Global B2B Pulse: Five Omnichannel Strategies Companies are Using to Boost Market Share by 10+ Percent https://cbomo.com/mckinsey-companys-annual-global-b2b-pulse-five-omnichannel-strategies-companies-are-using-to-boost-market-share-by-10-percent/ https://cbomo.com/mckinsey-companys-annual-global-b2b-pulse-five-omnichannel-strategies-companies-are-using-to-boost-market-share-by-10-percent/#respond Thu, 13 Apr 2023 18:59:44 +0000 https://cbomo.com/mckinsey-companys-annual-global-b2b-pulse-five-omnichannel-strategies-companies-are-using-to-boost-market-share-by-10-percent/ [ad_1]

NEW YORK and LONDON, April 13, 2023 (GLOBE NEWSWIRE) — McKinsey & Company’s latest Global B2B Pulse reveals that market share winners are going all in on omnichannel, even in uncertain times.

In particular, companies that reported a 10+ percent increase in market share last year deployed five specific omnichannel strategies in concert:

  • Hybrid sales teams and capabilities
  • Highly personalized marketing
  • Advanced sales technology usage
  • Third-party marketplaces strategies
  • Ecommerce excellence in owned platforms

Each strategy is valuable on its own, but they are most powerful when combined. Companies who invested in all five were twice as likely to gain market share than companies who adopted only one.

The Global B2B Pulse research analyzed responses from nearly 3,800 sales and marketing leaders across 13 countries. Since 2016, the B2B Pulse has gathered insights from almost 25,000 decision makers globally. This year’s Pulse reveals that omnichannel is now a must-have requirement in B2B marketing and sales.

Additional insights and trends include:   

Personalization shifts up a gear
77 percent of companies using direct 1:1 personalization saw an increase in market share. But companies showing the strongest market share growth – more than 10 percent a year – were overwhelmingly investing in sophisticated tactics that go beyond account-based marketing, like hyper-personalization. This form of personalization is growing most in Brazil, India, and the US, and driving market share growth particularly in the global energy and materials (GEM), finance, banking, and insurance, and telecommunications, media, and technology (TMT) sectors.

Market share winners are also investing in new sales tools that aid hyper-personalization. For example, 64 percent of share winners are using bots. Tools like these are increasingly used to accelerate and sharpen personalization for every customer at each stage of the buying journey. Stronger personalization helps ensure customers are presented with the right message, the right call to action, and the right products and solutions, all at the right time.

Appetite for high-value e-commerce transactions on the rise
The Pulse research also showed that, like last year, ~70 percent of decision makers are prepared to spend up to $500,000 in a single e-commerce transaction. Meanwhile, the number of buyers willing to spend up to $10 million in a single e-commerce transaction rose by 83 percent. This trend is particularly prominent in China, India, and the US – and especially within the global energy and materials (GEM); telecommunications, media, and technology (TMT); and advanced industries sectors.

B2B marketplaces present clear growth opportunity 
In a significant shift from legacy methods, 35 percent of B2B decision-makers now rate e-commerce as their most effective sales channel. The companies winning the most market share enable their customers to buy online through multiple channels. For instance, 48 percent of growing organizations sell via industry-specific marketplaces, while only 13 percent of organizations losing market share do. E-commerce comes ahead of in-person sales (26 percent), videoconferencing (12 percent), email (10 percent), and telephone (8 percent). The best results demand investment in experimentation and optimization over time. Strong execution requires consistent optimization, experimentation, and training for internal teams.

More than half of winning companies use hybrid sales teams
Hybrid sales models, which involve sales staff meeting with customers both in-person and remotely, were used by 57 percent of companies that are growing their market share. For companies losing market share, that figure is 40 percent. Today’s B2B customers need sales leaders to be available not only in-person, but also through remote sales meetings, virtual demonstrations, and digital relationship management. 

This increased use of larger hybrid teams is particularly linked with market share growth in the telecommunications, media, and technology, global finance, banking and insurance, as well as travel, transportation, and logistics sectors. 

Jennifer Stanley, Partner, McKinsey & Company:
“These trends we are seeing continue to shake things up for companies. And the signals are clear – customers know exactly what, where, how, and when they want things. What’s even more clear? Companies that adapt and respond to those needs and provide value are being rewarded in multiple ways – from higher retention rates, higher sales, and higher market share.”

Candace Lun Plotkin, Partner, McKinsey & Company:
“It’s a defining moment for sales and marketing leaders. Companies that are defying the odds and going all in on critical investments and growth levers are realizing market share gains at a faster clip. What this means for those who are looking to emerge stronger, is that growth – even in this difficult climate – is attainable. It comes down to charting that path and taking decisive action.”

For more insights, see the full report.

About the survey
McKinsey’s Global B2B Pulse has been published annually since 2016 and has now gathered insights from over 25,000 decision-makers. The most recent survey of 3,800 leaders across 13 countries (Brazil, Chile, China, France, Germany, India, Italy, Japan, South Korea, Spain, the United Kingdom, and United States) was conducted in December 2022. 

About Growth, Marketing & Sales, McKinsey & Company   
The mission of the McKinsey Growth, Marketing & Sales Practice is to help leaders of both consumer and business-to-business organizations drive sustainable and inclusive growth, through meaningful transformations and marketing-driven profit. The practice helps its clients set their strategic direction, develop their marketing and sales capabilities, and connect their organization to realize the full potential of today’s omnichannel opportunities. Clients benefit from McKinsey’s experience in core areas of marketing such as branding, customer insights, marketing ROI, digital marketing, CLM pricing, and sales and channel management.   

For more information, please contact:

US media contact: Alyssa Kehoe, Digennaro Communications, McKinsey-DiGennaro@digennaro-usa.com+1 917 518 8422

UK media contact: Ruth Jones/Becca Ross, 3THINKRS, mckinsey@3thinkrs.com+44 0208 0872843


[ad_2]

Source link

]]>
https://cbomo.com/mckinsey-companys-annual-global-b2b-pulse-five-omnichannel-strategies-companies-are-using-to-boost-market-share-by-10-percent/feed/ 0