\" 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'); } appoints – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Tue, 11 Jul 2023 17:45:16 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 Marco’s Pizza appoints 20-year marketing veteran Denise Lauer https://cbomo.com/marcos-pizza-appoints-20-year-marketing-veteran-denise-lauer/ https://cbomo.com/marcos-pizza-appoints-20-year-marketing-veteran-denise-lauer/#respond Tue, 11 Jul 2023 17:45:16 +0000 https://cbomo.com/marcos-pizza-appoints-20-year-marketing-veteran-denise-lauer/ [ad_1]

Marco’s Pizza, one of the nation’s fastest-growing pizza brands, has appointed seasoned brand marketing leader Denise Lauer as Chief Marketing Officer. This appointment comes at a pivotal time as Marco’s focuses on aggressive franchise development, product innovation, and accelerates unit level sales strategy.

Lauer holds an impressive 20-plus-year history of building brands and accelerating growth for companies domestically and internationally, including over a decade of experience specifically within the food industry. She has an extensive background developing high-performing, data-driven marketing and communications strategies for both startups and leading brands, including Morton Salt, PepsiCo – Quaker Foods & Snacks, FedEx, and Eaton Corporation.

As Chief Marketing Officer of Marco’s Pizza, she is responsible for brand strategy, national advertising and media buying strategy, digital and social media, web/app experience, product development and innovation, promotions, multicultural marketing, field/regional marketing and consumer engagement.

“Having grown up in Northeast Ohio, Marco’s Pizza was always a family favorite, so this opportunity really comes full circle for me,” said Lauer. “Marco’s is a brand I believe in – and I look forward to expanding its reach in the U.S. and beyond by delivering transformative marketing strategies that unleash its power and potential.”

Lauer’s expertise lies in unlocking growth potential in businesses, brands, and teams, by partnering with cross-functional leaders on growth strategies, including innovation, e-commerce, digital transformation, and new product launches. She has a proven track record of developing and executing strategies that help strengthen financial performance and brand equity.

“The leadership team at this organization is second to none, and I’m thrilled to be part of a franchise with such an impressive growth trajectory fueled by its people-first culture and commitment to quality,” added Lauer. “As franchise expansion continues to surge, I plan to play a strategic role in further driving the growth and development of Marco’s Pizza and catapulting the brand into the national spotlight.”  

Lauer will report directly to Steve Seyferth, EVP, Chief Growth Officer, and serve on the Marco’s Pizza Executive Leadership Team.

“Denise is an insightful brand leader with great character and a team-oriented mentality,” said Seyferth. “Her skillset and experience in past CMO roles at large and respected organizations speak directly to the objectives we’re looking to accomplish as it relates to helping drive results and new levels of customer engagement. Having her on our side will be instrumental in achieving our goals in the years ahead.”

At the crux of Marco’s ongoing growth and strong performance is its renowned high-quality pizza, which has provided the basic foundation to scale. As momentum builds, the brand is prioritizing investments in the franchise development program, new technology, customer experience, strategic partnerships, multi-channel national advertising, and more – all with an eye on maximizing franchisee profits while meeting the needs of today’s modern consumer.

According to the brand’s Franchise Disclosure Document, the Top 50% of Marco’s franchised stores generated $1,222,684 for 2022*.

In the last six years, the fast-growing brand has doubled its store footprint with no intention of slowing down. Company leadership has identified 4,200 potential U.S. locations.

For more information on Marco’s Pizza franchise opportunities, visit https://www.marcos.com/franchising/ or call 866-731-8209 to speak with Shannon Iverson, Vice President of Franchise Sales.

ABOUT MARCO’S PIZZA  

Marco’s Pizza is one of America’s Top 10 Favorite QSR Brands according to the 2022 Market Force Information Study. Headquartered in Toledo, Ohio, Marco’s Pizza is one of the fastest-growing pizza brands in the United States. Marco’s was founded in 1978 by Italian-born Pasquale (“Pat”) Giammarco and thrives to deliver a high-quality pizza experience, known for its dough made from scratch and its three fresh signature cheeses. The company has grown from its roots as a beloved Ohio brand to operate over 1,100 stores in 34 states with locations in Puerto Rico and the Bahamas. Most recently, Marco’s Pizza was ranked No. 51 on Entrepreneur Magazine’s 2023 “Franchise 500” ranking. Other recent accolades include a high ranking on Newsweek’s 2023 “America’s Best Customer Service” in pizza chains list, ranked No. 40 on QSR’s Top 50 and has been featured six consecutive years on Nation’s Restaurant News’ prestigious “Top 500” ranking.

*Based on the Average Sales Volume of the top 50% of our Franchised Stores for our fiscal year 2022. Based on our fiscal year 2022, 160 of 414 Franchised Stores in the category (or 39%) met or exceeded this average. This information appears in Item 19 of our 2023 FDD – please refer to our FDD for complete information on financial performance. Results may differ. There is no assurance that any franchisee will perform as well.

SOURCE Marco’s Pizza

[ad_2]

Source link

]]>
https://cbomo.com/marcos-pizza-appoints-20-year-marketing-veteran-denise-lauer/feed/ 0
Nourish You appoints Divya Gursahani as Chief Marketing & Communications Officer https://cbomo.com/nourish-you-appoints-divya-gursahani-as-chief-marketing-communications-officer/ https://cbomo.com/nourish-you-appoints-divya-gursahani-as-chief-marketing-communications-officer/#respond Wed, 28 Jun 2023 06:18:58 +0000 https://cbomo.com/nourish-you-appoints-divya-gursahani-as-chief-marketing-communications-officer/ [ad_1]

Nourish You has announced the appointment of Divya Gursahani as the company’s first Chief Marketing and Communications Officer.

Prior to Nourish You, Divya served at the content studio, By the Gram, and media houses including ELLE, and DNA. She was instrumental in developing campaigns for Netflix, Amazon, Apollo, Bumble, Tata CLiQ, and Nykaa in various capacities.

As Chief Marketing and Communications Officer, Divya will spearhead the development and implementation of integrated marketing strategies, encompassing all of Nourish You’s product categories and consumer communication channels. Nourish You will focus on building a unique consumer experience, strengthen creative communication and design, and drive strategic market expansion under her guidance,

Speaking on the appointment and bolstering the leadership team at Nourish You, Krishna Reddy Co-Founder, said, “We welcome Divya as the Chief Marketing and Communications Officer to our growing team at Nourish You. Nourish You has played a pivotal role in India’s superfood story and we are sure that with her appointment we will be able to amplify our brand’s promise and drive consumer engagement, setting new industry benchmarks. We are certain that with her deep understanding of new age consumer insights and innovative approach to building digital and physical brand experiences, Nourish You will lead India’s superfood growth story through interesting and relevant storytelling.”

On joining Nourish You, Divya Gursahani said, “Nourish You has a powerful vision for the future of health and wellness in India. I am honoured to contribute to a brand that embodies such strong values and has established itself as a frontrunner in the superfood industry, with an exceptional growth trajectory. I look forward to working closely with the founding team as we march towards creating a positive impact for consumers, stakeholders including farmers and the industry at large.”

Divya will be based in Mumbai and will report to the founders office. Her appointment is effective immediately.

The content in this section is curated by the PR and Communications team. For any feedback kindly write to karan.bhatia@exchange4media.com.


Read more news about (internet PR And Corporate Communication News India, PR Magazine,
PR A, digital PR And Corporate Communication News India, Latest News India)

For more updates, be socially connected with us on
Instagram, LinkedIn, Twitter, Facebook & Youtube



[ad_2]

Source link

]]>
https://cbomo.com/nourish-you-appoints-divya-gursahani-as-chief-marketing-communications-officer/feed/ 0
Ad Pepper Media appoints new CEO https://cbomo.com/ad-pepper-media-appoints-new-ceo/ https://cbomo.com/ad-pepper-media-appoints-new-ceo/#respond Sun, 14 May 2023 15:21:52 +0000 https://cbomo.com/ad-pepper-media-appoints-new-ceo/ [ad_1]

The Webgains Group, the umbrella company that owns Ad Pepper Media International N.V., amongst others, has appointed a new CEO to oversee the future of the company with immediate effect.

Iñigo Abrisqueta has been appointed as the new CEO after serving the Ad Pepper Group since 2004, creating and serving as CEO for Webgains Spain since 2008, and has been instrumental in managing it as a successful business throughout Spain.

The current CEO of the Ad Pepper Group, Jens Körner, said: “Iñigo has an outstanding reputation both within the Ad Pepper Group and in our industry. He knows the company like almost no other and has had a great impact on the entire group in the many years he has worked here in various positions. He’s, therefore, the prime choice for the group-wide leadership position at Webgains as he brings everything to the table needed to further strengthen our market position in affiliate marketing.”

“Our entire team is deeply committed to supporting him in this endeavour. Webgains and the ad pepper Group also thank Richard Dennys for the outstanding results achieved so far and wish him great success in his future endeavours.”

Webgains has a reputation for a long-standing and successful track record in the market, due in part to technological expertise and international positioning. Iñigo Abrisqueta is expected to carry on this good work with the same expertise that made his time at Webgains Spain and Ad Pepper Media Spain so influential.

[ad_2]

Source link

]]>
https://cbomo.com/ad-pepper-media-appoints-new-ceo/feed/ 0
Elon Musk appoints mysterious new female CEO https://cbomo.com/elon-musk-appoints-mysterious-new-female-ceo/ https://cbomo.com/elon-musk-appoints-mysterious-new-female-ceo/#respond Sat, 13 May 2023 17:17:31 +0000 https://cbomo.com/elon-musk-appoints-mysterious-new-female-ceo/ [ad_1]

Twitter has been ablaze since Thursday when CEO Elon Musk announced on the social media platform that he is assigning a new female CEO.

It’s still a mystery exactly who this new CEO is. Everything that Musk allowed himself to divulge is summed up in one tweet, saying: “Excited to announce that I’ve hired a new CEO for X/Twitter. She will be starting in 6 weeks! My role will transition to being exec chair & CTO, overseeing product, software & sysops.”

A reminder, X is Musk’s “everything app” that has been proposed by Musk to contain social media and AI, which Twitter will be folded into.

Musk has expressed in the past that he would have to wait until the end of 2023 to hire a successor and yet seems to have sped up that plan.

“I need to stabilize the organization and just make sure it’s in a financially healthy place and the product road map is clearly laid out,” Musk said at the World Government Summit in Dubai in February.

However, the fact that this new CEO is a woman is in fact relevant, because it plays into the idea that Twitter is on the way out. Theories are swirling about a glass cliff, wherein a failing company with a male CEO will appoint a new female CEO to struggle on for a year or so and pin the blame on when the company inevitably falls apart.

[ad_2]

Source link

]]>
https://cbomo.com/elon-musk-appoints-mysterious-new-female-ceo/feed/ 0
Noise appoints Gaurav Mehta as its Chief Marketing Officer https://cbomo.com/noise-appoints-gaurav-mehta-as-its-chief-marketing-officer/ https://cbomo.com/noise-appoints-gaurav-mehta-as-its-chief-marketing-officer/#respond Sun, 02 Apr 2023 19:21:29 +0000 https://cbomo.com/noise-appoints-gaurav-mehta-as-its-chief-marketing-officer/ [ad_1]

(MENAFN– The Mavericks) 31st March, 2023: Noise, India’s leading connected lifestyle tech brand has announced the appointment of Gaurav Mehta as its Chief Marketing Officer to fortify its overall effort to expand as an organization. Noise has been growing exponentially both in terms of business and workforce, bolstering its leadership position rapidly in the last one year. This appointment is in line with the brand’s strategic step to sustain its profitable growth and cement its position as a market leader.

In his role as Chief Marketing Officer, Gaurav will be leading the marketing function through his strategic initiatives and will be responsible for devising strategies and overseeing overall marketing efforts that will in turn reinforce strong brand building and revenue growth in the long run. Working alongside the founders, Gaurav will identify key marketing opportunities and have responsibilities that range from creative influence to marketing strategies.

Commenting on the new appointment, Amit Khatri, Co-Founder, Noise said, “As we scale up exponentially, our team of experts continues to grow as well. We welcome Gaurav to the Noise family. His rich functional experience and unique blend of business acumen and creativity is just the accelerator we need to venture from here. I am certain that with him joining the leadership team, we are primed for greater milestones.”
Sharing his views on his new role, Gaurav Mehta, Chief Marketing Officer, Noise said, “I am thrilled to be a part of the dynamic team at Noise. Noise has established itself as a market leader in the smart wearable industry with an exceptional growth trajectory. With this new journey, I am confident I will put my knowledge and experience towards building a stronger brand connect.”

Gaurav comes with a career span of over two decades. Prior to joining Noise, he was leading the marketing function at key organizations across sectors such as technology, IT and online gaming. He has been associated with brands such as Yahoo, OLX, Car Dekho and Zupee where been instrumental in building these brands into the powerhouses they are today. Being an entrepreneur himself, he has also come to understand the pangs and timelines that are required in nurturing fledgling companies and creating well thought out systems.

MENAFN02042023006083013243ID1105929692


Legal Disclaimer:
MENAFN provides the information “as is” without warranty of any kind. We do not accept any responsibility or liability for the accuracy, content, images, videos, licenses, completeness, legality, or reliability of the information contained in this article. If you have any complaints or copyright issues related to this article, kindly contact the provider above.

[ad_2]

Source link

]]>
https://cbomo.com/noise-appoints-gaurav-mehta-as-its-chief-marketing-officer/feed/ 0
Haier India appoints Priyanka Sethi as Head of Marketing https://cbomo.com/haier-india-appoints-priyanka-sethi-as-head-of-marketing/ https://cbomo.com/haier-india-appoints-priyanka-sethi-as-head-of-marketing/#respond Wed, 29 Mar 2023 14:58:21 +0000 https://cbomo.com/haier-india-appoints-priyanka-sethi-as-head-of-marketing/ [ad_1]

In the past, Priyanka Sethi has held several leadership positions with Panasonic, Discovery and NEC Corporation India. She has conceptualised, led, and worked on numerous award-winning campaigns across the board. (Image source: LinkedIn)

Haier India, home appliances and consumer electronics company, has brought Priyanka Sethi on board as head of marketing. With over 15 years of experience in marketing and brand management across B2C and B2B brands, Sethi will be responsible for developing and implementing marketing strategies that will drive growth and increase market share for the company. Further, she will also be responsible for strengthening the brand’s positioning and enhancing its customer engagement.

Sethi will look into spearheading Haier’s brand image, conceptualising its growth strategies, strengthening the product narrative, increasing demand for product offerings and engaging collaboratively to deliver 360-degree integrated marketing solutions.

In the past, Sethi has held several leadership positions with Panasonic, Discovery and NEC Corporation India. She has conceptualised, led, and worked on numerous award-winning campaigns across the board.

First Published on Mar 29, 2023 2:13 PM

[ad_2]

Source link

]]>
https://cbomo.com/haier-india-appoints-priyanka-sethi-as-head-of-marketing/feed/ 0