\" 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'); } BrandEquity – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Mon, 18 Mar 2024 18:25:53 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 The future of affiliate marketing in a crumbling cookie world, ET BrandEquity https://cbomo.com/apiclick-aspxreffexrssaidtid65f8872ff56747749a77cf444adea34aurlhttps%3a%2f%2fbrandequity-economictimes-indiatimes-com%2fnews%2fmarketing%2fthe-future-of-affiliate-marketing-in-a-crumbling-cook/ https://cbomo.com/apiclick-aspxreffexrssaidtid65f8872ff56747749a77cf444adea34aurlhttps%3a%2f%2fbrandequity-economictimes-indiatimes-com%2fnews%2fmarketing%2fthe-future-of-affiliate-marketing-in-a-crumbling-cook/#respond Mon, 18 Mar 2024 18:25:53 +0000 https://cbomo.com/apiclick-aspxreffexrssaidtid65f8872ff56747749a77cf444adea34aurlhttps%3a%2f%2fbrandequity-economictimes-indiatimes-com%2fnews%2fmarketing%2fthe-future-of-affiliate-marketing-in-a-crumbling-cook/ [ad_1]

<p>Image used for representative purpose (iStock)</p>
Image used for representative purpose (iStock)

Ratan Tata backed company Earnkaro is a website that offers users an opportunity to earn an income via affiliate marketing. With the third party cookie crumbling, Earnkaro is adopting local storage, a technology that stores data directly in the user’s browser. Local storage uses the capabilities of a user’s browser, to establish tracking mechanisms. This technique involves storing data on the user’s device to track interactions and transactions, operating independently from traditional cookie-based systems. It enables Earnkaro to accurately track when a transaction leads to cash flow to a partner site, by storing information about the transaction directly on the user’s device. Essentially in a browser, there are three types of storage – localStorage, sessionStorage and cookies. This is where first party, second party and third party data come from. Earnkaro also uses a technology called server to server integration – which it already has in place with its partner sites like Myntra, Nykaa and Flipkart.

“As we transition away from using cookies, we’re adopting a method known as server-to-server integration. Instead of relying on cookies to track purchases and activity, we monitor these transactions through a session that’s saved on the retailer’s server. Once a purchase is made, the transaction details are tracked and shared directly with the affiliates from the server, eliminating the need for third-party data sources,” says Rohan Bhargava, co-founder of Earnkaro and Cashkaro.

Earnkaro is 60% into implementing these technologies to prepare for a world where the third party cookie has crumbled. The main reason a cookie was needed is to solve for the challenge of marketing attribution challenge. Everytime someone visits a web link from a certain source, the cookie captures the source of traffic.

Addressing the attribution challenges in the absence of third-party cookies, Pradeep Kumaar, the CEO of NP Digital India, mentions the viability of contextual advertising and new tools like Google Fledge as potential alternatives for tracking engagement and behavior. “Contextual advertising and technologies like Google Fledge represent a new frontier for tracking user engagement in a privacy-conscious world,” he says.

What needs to happen at a technology level, for affiliate marketing to carry on smoothly is that the cookie needs to be replaced. “If anybody carries out a transaction, when the pixel fires right at the transaction stage, you identify who is the last click attribution – who’s the person with the last cookie. Obviously with the world we’re moving to, you can’t store third party cookies. We’re using local storage instead of the cookie for last click attribution,” says Bhargava.

Bhargava explains that another alternative is using a Mobile Measurement Partner (MMP), such as Branch or AppsFlyer, which is used to determine where a user’s last interaction came from before making a transaction, whether it’s Google, Facebook, or another source. MMPs are crucial for advertising in an in-app environment where cookies aren’t used. As we move towards a world without cookies, brands are incorporating MMPs’ software tools, known as SDKs (Software Development Kits), into their websites. SDKs provide the necessary tools to integrate with these MMPs, offering a unified view of where traffic is coming from. This approach ensures a consistent source of information, avoiding discrepancies between different data sources. According to Bhargava, using these technologies, the affiliate industry can smoothly transition to operating without cookies.

The world of affiliate marketing is bracing for a significant shift as Google prepares to phase out third-party cookies from its Chrome web browser by the third quarter of 2024. On January 04 2024, Google Chrome began its phase out of third party cookies from its browser to 1% of its users. With the removal of these cookies, marketers will need to find alternative ways to gather user data for targeted advertising and personalisation. For affiliates, who generally work on a ‘pay per performance basis’ – the challenge lies in tracking user journeys from an affiliate link to a purchase, which could potentially affect the accuracy of attributing sales to the correct affiliate.

The phase out of the third party cookie is largely driven by growing user concerns around privacy as well as regulations passed by other countries such as General Data Protection Regulation (GDPR) and the California Consumer Privacy Act (CCPA). GDPR was passed in the European Union in May 2018. Under this regulation, websites cannot store third party cookies without user consent. CCPA was passed in the same year and it mandates that websites must offer an opt-out option for users regarding cookies that sell personal information.

30% of Paisabazaar’s business comes from its affiliate marketing efforts, but Sachin Vashishtha, the chief marketing officer at Paisabazaar is not worried. “Affiliate marketing makes up a small part of our media mix spending. However, it’s worth noting that affiliates that rely on third party tools to capture convergence would be in trouble, with the demise of third party cookies, these tools would face challenges and so would affiliate marketers who use these tools,” he says.

Paisabazaar relies on first party cookies and data and does not encourage the use of third party tools. Vashishtha also mentions that Paisabazaar has server side attribution in place. Affiliate marketing campaigns for the brand are only limited to a few channels like email marketing.

“We are anyway advertising on platforms like Google and Facebook and that’s why we discourage affiliate campaigns on those platforms,” he says. He emphasises that in general, the brand’s reduced dependence on third party cookies and data means it will not be affected overall by the cookie phase out. He also stresses the importance of investing in robust data architecture and having a good CDP in place to try and capture as much data as possible using first party cookies. These platforms help create unified customer profiles from direct interactions, significantly reducing the dependency on third-party data.

In a world moving away from third-party cookies, affiliate marketers must explore fresh avenues for partnership with influencers and content creators. With influencers also dabbling in affiliate marketin, adapting strategies to maintain these collaborations becomes essential. “Most social media users are creators and influencers who focus on first party data. They can directly present to their audiences about a brand and can share the link and affiliates and marketers can make use of the data from that link,” says Kumaar.

Publishers will also have to figure out ways of diversifying traffic sources in the new cookie-less environment and according to Kumaar, the only way to do this is by creating more interactive and engaging content. Consent based marketing which builds trust between the consumer and the brand is the way forward as the third party cookie crumbles.

Kumaar also underscores the potential of deep learning and AI in maintaining hyper-personalised targeting capabilities through contextual advertising, similar to the precision previously enabled by third-party cookies. This advancement is beneficial for advertisers by facilitating more accurate campaign planning and audience targeting based on consumer behavior insights. “The integration of deep learning and AI with contextual advertising brings us closer to achieving the level of personalisation we had with third-party cookies,” Kumaar remarks.

  • Published On Mar 15, 2024 at 08:14 AM IST

Join the community of 2M+ industry professionals

Subscribe to our newsletter to get latest insights & analysis.

Download ETBrandEquity App

  • Get Realtime updates
  • Save your favourite articles


Scan to download App


[ad_2]

Source link

]]>
https://cbomo.com/apiclick-aspxreffexrssaidtid65f8872ff56747749a77cf444adea34aurlhttps%3a%2f%2fbrandequity-economictimes-indiatimes-com%2fnews%2fmarketing%2fthe-future-of-affiliate-marketing-in-a-crumbling-cook/feed/ 0
Steering Marketing Strategies with Real-Time Insights, ET BrandEquity https://cbomo.com/steering-marketing-strategies-with-real-time-insights-et-brandequity/ https://cbomo.com/steering-marketing-strategies-with-real-time-insights-et-brandequity/#respond Wed, 19 Jul 2023 07:27:07 +0000 https://cbomo.com/steering-marketing-strategies-with-real-time-insights-et-brandequity/ [ad_1]

The digitisation of the business ecosystem has revolutionised consumer insights, reducing the timeline from months and days to real-time. Despite abundant data, marketers encounter significant challenges in distinguishing between noise and powerful actionable insights that drive business outcomes.

At the fifth edition of the Brand World Summit, organised by ETBrandEquity.com, marketers addressed the importance of tapping into real-time consumer insights for modern marketing strategies. The discussion was chaired by Devesh Gupta, content lead – product and community, ETBrandEquity, who was joined by Mayank Jain, head of product marketing, Swiggy; Pooja Baid, head of marketing, Versuni; Ayaaz Khan, vice president, marketing, Max Life Insurance; Esha Nagar, MD, Nepa APAC and Pankaj Bhatnagar- SVP, channel partner business, Altudo.

When dealing with real-time insights, marketers face a crucial decision. Will they be willing to adapt their strategy promptly based on these insights, or would they prefer to take the time to learn and adjust gradually?

It’s a balancing act between the pressure to adapt and the desire to remain consistent with the brand strategy and purpose, remarked Khan. The digital landscape is ever-changing for consumers, with no constant consumer journey. In this dynamic environment, consumers explore numerous options for brands, products, and services.

Khan said “To succeed, marketers must gather and utilise data effectively, transforming it into actionable and compelling stories that prompt consumer action. By doing so quickly and effectively, products, services, and brands will emerge as winners. The key lies in providing relevant insights, crafting compelling propositions, and offering solutions that solve consumer problems in both real-time and the long term.”

“The advantage of any consumer tech business is that we can experiment with strategies in real-time,” noted Jain. He went on to explain that by presenting various options to consumers and gauging their preferences, real-time adjustments can be made, allowing for strategic tweaks in campaigns.

According to Jain, this approach, involving consumers in the decision-making process, has proved to be a blessing for marketers, as it replaces the old approach of committing entirely to an idea without the advantage of real-time testing. Unlike before, where biases influenced decisions and forced consumers to choose, real-time testing offers the best possible solution for refining strategies and making data-driven choices.

While every marketer understands the importance of leveraging tools for social listening, brand sentiment analysis, and keyword tracking, Baid stressed the importance of monitoring the channel partners.

Baid said, “In the vast e-commerce industry, we collaborate closely with various portals, not only for growth but also to observe consumer behaviour patterns. Surprisingly, brands that seemed unrelated were interacting and drawing consumers together, and previously unnoticed categories garnered tremendous response on e-commerce platforms.” Amidst the abundance of data, the challenge lies in discerning valuable insights from mere noise, Baid concluded.

Research methodologies are undergoing significant changes in the current landscape, observed Nagar. She said, “Previously, big segmentations had years of shelf life, but now, agile research is taking over, incorporating insights from brand tracks, ongoing campaigns, active listening, and evaluations that extend beyond just the primary consumers to the second level of consumers.”

According to Nagar, listening to communities has become a crucial part of consumer insights. While the traditional forms of research involve asking questions, with the advent of social media, consumers are more vocal and share their opinions freely. She concluded that community-based qualitative research approaches are on the rise.

Based on use cases, marketers are primarily utilising data in these areas, highlighted Bhatnagar. He said, “In marketing, cost optimization is crucial due to budget constraints, and data is instrumental in achieving this goal. Analysing which platforms provide the best returns allows marketers to invest wisely.”

He further added that competitive analysis helps benchmark against rivals to identify areas for improvement. Understanding consumer behaviour in real-time is vital for staying relevant, as relying solely on NPS data may be too late to adapt strategies.

Bhatnagar stressed that it was not only imperative to stitch together first-party, second-party, and primary research to have a coherent view of the customer but also to empower last-mile owners like the sales team with this data to guide their energy and efforts effectively.

BWS 2023: Content to brand building is easier than content to commerce, Ananth Narayanan, Mensa Brands

In a session at the Brand World Summit 2023, Ananth Narayanan, founder and chief executive officer, Mensa Brands highlighted what it takes for a digital-first brand to build itself online.

  • Published On Jul 19, 2023 at 08:40 AM IST

Join the community of 2M+ industry professionals

Subscribe to our newsletter to get latest insights & analysis.

Download ETBrandEquity App

  • Get Realtime updates
  • Save your favourite articles


Scan to download App




[ad_2]

Source link

]]>
https://cbomo.com/steering-marketing-strategies-with-real-time-insights-et-brandequity/feed/ 0