\" 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'); } Privacy – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Sat, 22 Jun 2024 21:15:10 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 Data Privacy and Google Analytics: Navigating the Cookieless Future https://cbomo.com/data-privacy-and-google-analytics-navigating-the-cookieless-future/ https://cbomo.com/data-privacy-and-google-analytics-navigating-the-cookieless-future/#respond Sat, 22 Jun 2024 21:15:10 +0000 https://cbomo.com/data-privacy-and-google-analytics-navigating-the-cookieless-future/ [ad_1]

In today’s digital age, data privacy is more crucial than ever. With growing concerns about how personal information is used online, businesses need to adapt to new regulations and technologies. One of the most significant changes on the horizon is Google’s move towards a cookieless future. This shift will have a profound impact on how businesses use Google Analytics and manage their data.

The Cookie-less Future

Google has announced plans to phase out third-party cookies in its Chrome browser by the second half of 2024. This move is part of Google’s Privacy Sandbox initiative, which aims to enhance user privacy while still enabling targeted advertising . Third-party cookies have long been a staple of online advertising, helping businesses track user behavior across different websites. Without them, companies will need to find new ways to gather and analyze data.

Google Analytics and Privacy Sandbox

Google Analytics is one of the most widely used tools for tracking website performance and user behavior. The transition to a cookieless future means Google Analytics will also undergo significant changes. The Privacy Sandbox introduces new APIs like the Topics API, which will replace the need for third-party cookies by providing insights based on users’ interests without compromising their privacy  .

Adapting to the Changes

For businesses, adapting to these changes is essential. Here are some steps to help navigate this transition:

1. Understand the New Tools

Familiarize yourself with the new APIs and features in the Privacy Sandbox. Google provides extensive documentation and support to help businesses understand these tools. By leveraging these new technologies, you can continue to gain valuable insights while respecting user privacy.

2. Focus on First-Party Data

First-party data, which is information collected directly from your audience, will become even more valuable. Invest in strategies to collect and analyze first-party data, such as email subscriptions, surveys, and direct interactions with your customers .

3. Enhance Transparency and Consent

Ensure that your data collection practices are transparent and that you obtain explicit consent from users. This builds trust and ensures compliance with data privacy regulations like the General Data Protection Regulation (GDPR) and the California Consumer Privacy Act (CCPA) .

4. Use Advanced Analytics Tools

Google Analytics 4 (GA4) is designed to work without third-party cookies and offers advanced machine learning models to fill in data gaps. GA4 provides a more holistic view of customer behavior across different platforms and devices, making it a valuable tool in the cookieless future  .

The Impact on Affiliate and Performance Marketing

The shift to a cookie-less future will also impact digital marketing strategies. Here’s what you may need to consider:

1. Rethink Targeting Strategies

With the loss of third-party cookies, traditional targeting methods will no longer be effective. Marketers will need to rely more on contextual targeting and first-party data to reach their audience. Affiliates may need to invest in building brands and communities to acquire new customers and provide additional services to them to retain and serve them. Adding value becomes an important role in the customer journey and affiliates will have to find ways to provide that versus sending traffic from one platform to another.

2. Invest in Content Marketing

Content marketing will play a more significant role in attracting and retaining quality customers. High-quality, relevant content can help build relationships and trust with your audience, encouraging them to share their data willingly. Investing in video content and short form snippets that offer insight, answer questions and showcase products across multiple platforms is another way affiliates can add value in the buyer awareness journey.  Understanding lead generation and dark patterns and how to stay compliant obtaining customer data will become paramount for all affiliates business owners.

3. Strengthen Relationships with Customers

Building strong, direct relationships with your customers is crucial. Engage with your audience through personalised communication and offer value that encourages them to stay connected with your brand instead of sending them to other brands at point of contact. Understanding now that your customer data is going to be your business worth is critical for affiliates to invest in as we had into this next challenging year.

It’s not all bad news.

The move towards a cookie-less future represents a significant shift in the digital landscape. For SME businesses, it presents both challenges and opportunities. By understanding and adapting to these changes, you can continue to leverage data effectively while respecting user privacy. Understanding how to navigate your business to success is all about getting ahead of what is changing.

Invest in first-party data, enhance transparency, and make use of advanced analytics tools like GA4. These steps will help you navigate the cookie-less future and maintain a competitive edge in the digital market. The key to success lies in being proactive and embracing these changes. Stay informed, be adaptable, and prioritize your customers’ experiences and maintain their privacy. By doing so, you can build trust and achieve long-term success in the evolving digital landscape.

 

_______

Worried about what the future of marketing will be in a Cookie-Less Era?

Join us at this year’s ELEVATE summit 

Whatever you need help with, we’re bringing together a host of experts in one room  to act as your personal consultants. From marketing to lead generation and performance strategies you’ll get all the insights plus a delicious lunch spanning 2 days and all for just £349!

Take a look at our jam packed Agenda designed to help your business grow!

Don’t Miss Out!

Tickets for ELEVATE are selling fast, and with an Early Bird price of just £349 that can’t stick around for long, now is the time to secure your spot. Don’t miss this opportunity to learn from the best, network with industry leaders, and gain the insights you need to future-proof your marketing strategy. Join us in London 16 -17 September  and take the first step towards mastering the next era of digital and affiliate marketing.

Book your tickets today and get ready to ELEVATE  your business to new heights!

[ad_2]

Source link

]]>
https://cbomo.com/data-privacy-and-google-analytics-navigating-the-cookieless-future/feed/ 0
The Secret to Personalization Without Privacy Worries https://cbomo.com/the-secret-to-personalization-without-privacy-worries/ https://cbomo.com/the-secret-to-personalization-without-privacy-worries/#respond Fri, 05 Apr 2024 16:07:46 +0000 https://cbomo.com/the-secret-to-personalization-without-privacy-worries/ [ad_1]

The Gist

  • Personalization pivot. Marketers must adapt to a privacy-first landscape, balancing personalized experiences with increased data privacy demands.
  • First-party focus. Leveraging first-party data and enhancing it with privacy-safe third-party sources is crucial for effective personalization.
  • AI-driven solutions. Embracing AI-driven, privacy-compliant marketing solutions can help maintain personalization while respecting privacy.

In recent years, traditional mass marketing tactics have edged ever closer to the grave, replaced by personalized marketing campaigns that cater to consumers’ individual needs. Now, we have found ourselves in an age where personalization is no longer just appreciated, it is expected, and has become one of the main priorities for marketers.

The issue is that as they demand a more tailored brand experience, customers have also become more concerned about how their data is collected and used. As a result, we have seen stricter legislation come into effect, individuals becoming more guarded over their personal details and the gradual depreciation of third-party cookies.

This presents a significant challenge. How can marketers continue to deliver on their audiences’ expectation for personalized marketing experiences while also meeting their needs for increased data privacy?

Personalized Marketing: Embrace the Shift From Third-Party Cookies

Third-party cookies have been the driving force behind much of our personalized marketing to date, tracking customers’ online activity so that we can meet them with targeted messaging. But, come August this year, we will be saying our last goodbyes as Google finally removes them from Chrome.

A child with bangs waves through the window of a blue car in piece about personalized marketing and cookes.
Third-party cookies have been the driving force behind much of our personalized marketing to date, tracking customers’ online activity so that we can meet them with targeted messaging. But, come August this year, we will be saying our last goodbyes as Google finally removes them from Chrome.malija on Adobe Stock Photos

This represents a truly pivotal moment for marketing, and one that highlights the shift in consumer demands for a more transparent, privacy-centric approach toward collecting and using their data.

To survive in the new cookie-less world, it is also a change we need to meet head on.

This means going beyond the basics and the legal requirements for data privacy. Instead, the onus is on us to build marketing strategies that truly embrace the privacy-first mentality — handing customers full control over their information, keeping them informed about what data they’ve shared and demonstrating the value they are getting in exchange for it.

Related Article: 4 Customer-Centric Strategies for Improving Data Privacy

Focus on First-Party Data Enrichment

First-party data has become an increasingly vital resource for brands as we move further into the privacy age. It is gathered directly from interactions with the customer, with their explicit consent; not only addressing the privacy concerns, but also enhancing the quality and reliability of the data itself.

For most brands, however, first-party data won’t be enough on its own (except for those tech giants like Google and Meta). It will need to be enriched with qualified, privacy-safe third-party data pulled from additional sources. And the key to doing this effectively lies in having the right customer data platform (CDP) in place.

A properly integrated CDP will bring together the data collected from all sources and continuously update customer profiles in a central location. Using this, we can model and enhance first-party data to create a clearer, more holistic view of our audiences. This will provide more accurate insights and lead to improved segmentation and personalization, ultimately delivering a better customer experience.

Related Article: The Impact of Google’s Third-Party Cookie Deprecation

Leverage Black Box Solutions

The increased focus on privacy is affecting all companies, regardless of size, and has led to a significant increase in support of AI-driven, privacy-compliant marketing solutions. We’ve seen initiatives such as consent mode, enhanced conversions and Google Analytics 4 (GA4) fast tracked, offering users a host of new features to help align with a more privacy-centric approach to marketing.

Owing to this, we have also seen an increased emphasis on ‘in-house’ AI tools, AKA Black Box solutions, such as Meta’s Advantage+ and Google’s Performance Max. These tools can be both effective and widely accessible, providing marketers with an efficient way of scaling personalization efforts while embracing privacy.

By using these solutions to analyze our enriched first-party data, we can uncover hidden patterns that might otherwise be missed, anticipate future behaviors, and bridge any informational gaps, facilitating the creation of highly tailored marketing strategies. This not only further enhances the relevance and effectiveness of campaigns, but it can also help to significantly increase customer engagement and improve conversion rates.

Related Article: Using First-Party Data to Build Trust With Your Customers

Preparing for a Privacy-First Future

The demise of third-party cookies and the heightened focus on privacy may feel like a barrier, but it shouldn’t be viewed that way. Instead, we should embrace it, using it as an opportunity to demonstrate transparency and rebuild trust with consumers. In this way, we can foster a more positive relationship with our audiences, strengthening brand loyalty while providing our customers with control over their data and peace of mind regarding their privacy.

At the same time, by focusing our attention on first-party data enrichment and the advanced capabilities of AI technologies, we can still deliver the personalized marketing experiences our customers expect — however, this time, with their full knowledge and consent.

It is undoubtedly a massive shift in the marketing landscape, and one that will no doubt require some effort to manage. But it is a shift for the best, and it will lead us to more sustainable and successful personalized marketing strategies proactively designed for the privacy age.

fa-solid fa-hand-paper Learn how you can join our contributor community.

[ad_2]

Source link

]]>
https://cbomo.com/the-secret-to-personalization-without-privacy-worries/feed/ 0
Google Tightens Privacy Screws | Marketers Face Penalties for Missing March Deadline https://cbomo.com/google-tightens-privacy-screws-marketers-face-penalties-for-missing-march-deadline/ https://cbomo.com/google-tightens-privacy-screws-marketers-face-penalties-for-missing-march-deadline/#respond Wed, 14 Feb 2024 18:09:51 +0000 https://cbomo.com/google-tightens-privacy-screws-marketers-face-penalties-for-missing-march-deadline/ [ad_1]

The clock is ticking for digital marketers as Google enforces penalties for non-compliance with its updated Consent Mode v2 system. Designed to enhance user privacy, this mandatory upgrade could significantly impact affiliate partnerships and campaign strategies. Let’s break down the key details and answer the questions every Affiliate Manager and Affiliate needs to know…

What is Consent Mode v2?

Think of it as a gatekeeper for user consent data. Websites serving ads or tracking user behaviour in the European Economic Area (EEA) must implement this system by March 6th, 2024, to ensure they respect visitor preferences and comply with regulations like the the General Data Protection Regulation (GDPR). It works by sending signals to Google Ads and Analytics about a user’s consent choices (e.g., accept, reject, or limited cookies).

What does this mean for Affiliate Managers?

  • Limited Data: Without Consent Mode v2, Affiliate Managers lose access to valuable data for campaign optimisation and performance measurement. This can affect insights into audience segments, conversions, and overall attribution accuracy.
  • Compliance Risk: Ignoring the deadline puts affiliate programs at risk of violating data privacy regulations, potentially leading to fines and reputational damage.
  • Partner Selection: Choosing Affiliates who haven’t implemented Consent Mode v2 becomes riskier, impacting campaign effectiveness and compliance.

What does this mean for Affiliates?

  • Targeting Challenges: Targeting specific audience segments based on consent preferences might become less precise, impacting campaign effectiveness.
  • Attribution Issues: Measuring conversions accurately becomes trickier due to limited data access, making it harder to demonstrate campaign value.
  • Technology Updates: Affiliates must ensure their technology platforms and tracking methods are compatible with Consent Mode v2 to avoid data disruptions.

The Deadline Looms: March 6th, 2024

This is a requirement. With less than a month left, Affiliate Managers and Affiliates should prioritise the following:

For Affiliate Managers:

  • Communicate Clearly: Inform all affiliated partners about the Consent Mode v2 deadline and its implications.
  • Verify Compliance: Check if your affiliates have implemented the system and ensure they understand its functionalities.
  • Explore Alternative Solutions: Consider privacy-focused measurement tools and attribution models to navigate data limitations.

For Affiliates:

  • Implement Consent Mode v2: Prioritise integrating the system with your website and advertising platforms.
  • Communicate Transparency: Inform Affiliate Managers about your compliance status and data collection practices.
  • Explore Privacy-Centric Strategies: Adapt your campaigns to respect user privacy preferences and consider contextual targeting options.

Staying Up-to-Date:

The Takeaway:

Consent Mode v2 is not just a technical update; it’s a shift towards a privacy-focused digital landscape. Affiliate managers and affiliates who adapt proactively can navigate these changes effectively and maintain successful partnerships while prioritising user privacy. Remember, the deadline is March 6th, 2024.

Calling all Affiliates and Affiliate Managers!

Join AMPLIFY – our unmissable two-day Virtual Learning Summit on March 19 and 20. Delivered direct to your screen, our industry experts will share a series of informed debates covering new trends and thought leadership workshops, designed to help affiliate businesses AMPLIFY their performance!

GET ON DEMAND TICKETS FOR JUST £49. Click here.

[ad_2]

Source link

]]>
https://cbomo.com/google-tightens-privacy-screws-marketers-face-penalties-for-missing-march-deadline/feed/ 0
Airbnb Launches Series of Money-Saving, Privacy Upgrades https://cbomo.com/airbnb-launches-series-of-money-saving-privacy-upgrades/ https://cbomo.com/airbnb-launches-series-of-money-saving-privacy-upgrades/#respond Thu, 04 May 2023 09:47:32 +0000 https://cbomo.com/airbnb-launches-series-of-money-saving-privacy-upgrades/ [ad_1]

Airbnb is making changes to encourage guests to continue using the service despite inflation and more cost-conscious traveling behavior.

The company announced on Wednesday a series of 50+ upgrades to its website including the rollout of the new Airbnb Rooms, which they’re calling a “new take on the original Airbnb.” The company launched in 2008.

The option to book a private room in a larger home has been an option on Airbnb since day one and is usually preferred by solo travelers or those looking for a cheaper option.

Related: How a 20-Year-Old Airbnb Host Made $375,000 In Revenue in 2022

But safety concerns have also run high among Airbnb users, and now the company is trying to make the Rooms service more attractive in an attempt to keep customers booking through the site at an affordable rate.

As a part of Rooms, customers will have access to a new feature called “Host Passport” which will show users information about the host, everything from their hobbies to the different languages they speak to photos of them that they choose to post.

Credit: Airbnb

Rooms will also include more privacy features, such as whether or not they’ll be sharing a bathroom if other Airbnb guests will be renting in the same home, and whether or not the hosts will be there. Guests will also be informed about whether or not their rooms have locks.

Credit: Airbnb

“We know there’s a lot of talk and concern about the economy, inflation, the possibility of recession,” Airbnb’s co-founder and Chief Strategy Officer Nate Blecharczyk told FOX Business. “I think people are going to be a little bit more price-conscious.”

Airbnb estimates that the average price of a room stay on its site is $67 per night and that nearly 80% of all rooms listed are priced under $100.

Other changes aimed at cost-saving announced on Wednesday include allowing short-term renters to pay off their fees over time during certain stays, allowing users to pay directly through their banks in order to avoid credit card fees, and giving long-term renters discounts after a third month.

Airbnb is expected to oversee 300 million guests in 2023.

[ad_2]

Source link

]]>
https://cbomo.com/airbnb-launches-series-of-money-saving-privacy-upgrades/feed/ 0
Boulder, Colorado Agency, The Creative Alliance Offers Crucial Insights on Data Privacy Regulations Effects on Marketing https://cbomo.com/boulder-colorado-agency-the-creative-alliance-offers-crucial-insights-on-data-privacy-regulations-effects-on-marketing/ https://cbomo.com/boulder-colorado-agency-the-creative-alliance-offers-crucial-insights-on-data-privacy-regulations-effects-on-marketing/#respond Thu, 30 Mar 2023 01:02:06 +0000 https://cbomo.com/boulder-colorado-agency-the-creative-alliance-offers-crucial-insights-on-data-privacy-regulations-effects-on-marketing/ [ad_1]

What Marketers Need To Know About Privacy Regulations

Lafayette, Colorado–(Newsfile Corp. – March 29, 2023) – It’s Marketing 101: To succeed, you must obtain and maintain as much information as possible about your customers and prospective customers. That way, you can tailor your marketing outreach to their wants, needs, and demographics and increase sales.

Cannot view this image? Visit: https://images.newsfilecorp.com/files/8568/160424_figure2_550.jpg

Woman using smartphone with icon graphic cyber security network of connected devices and personal data information

With that as the goal–and the effort and expense required to achieve it–it’s easy to understand why companies historically came to view customer data as their asset. But events in recent years have forced businesses to see personal information differently.

Specifically, consumers are demanding more say in how their data is collected, used, and managed. Legislators are granting them that right in laws like the California Privacy Rights Act. It went into effect on January 1, 2023, and adds to protections in the state’s first-in-the-nation 2018 legislation that gives people more access to and control of their collected personal information.

And California isn’t alone. Virginia, Connecticut, Colorado, and Utah have new privacy laws, and other states are sure to follow. Efforts are also underway to enact federal privacy legislation like the American Data Privacy and Protection Act.

Getting a Handle on Data Privacy Regulations

Most people today would agree that an individual’s name, purchase history, internet browsing habits, etc., is information that belongs to them. However, that new perspective will require marketers to modify their tactics to avoid actions like the fine imposed on beauty product company Sephora for sharing information with third-party advertising networks and analytics providers.

But will this change in how customer data must be protected be devastating to marketing professionals and their efforts? No, not at all.

New privacy regulations will require a significant culture shift for in-house marketing teams, marketing agencies, and anyone who seeks to engage with consumers. But that’s nothing new. Marketers are agile by nature. They have to be to keep up with continually evolving market preferences, new marketing-related technology and tactics, etc.

The key to adapting will be taking the time necessary to review and digest the privacy laws that affect you and your customers. Once you have a handle on them, you can modify existing strategies and develop new ones within that framework.

And, of course, if you work with a marketing and UX (user experience) agency like The Creative Alliance, you’ll have our assistance in understanding how to manage customer data effectively while adhering to relevant rules and regulations.

Attracting and Retaining Customers by Providing a Positive Privacy Experience

Studies have shown that nearly 50% of consumers will leave their favorite brand for their second favorite if the former doesn’t provide a positive privacy experience.

That’s a sobering fact–but it also points to an important opportunity. Companies that have and promote strong data protection policies and practices will earn the trust of prospective customers and the loyalty of existing ones.

Privacy Policies: What Consumers Want From Companies

Developing a positive data management user experience isn’t difficult. The expectations American consumers are expressing in the countless surveys being conducted on this issue are fairly straightforward.

They want companies to do the following:

  • Create and maintain a clear, concise privacy policy written in plain English.
  • Implement privacy tools that enable people to change their cookie preferences.
  • Make it easy to unsubscribe from email marketing lists.
  • Ask permission to personalize a website experience.
  • Use state-of-the-art security measures to prevent unauthorized data access.
  • Remind them periodically about their privacy settings and how to modify them.

None of these requires an unreasonable amount of time, effort, or money. The investment is more about the ongoing awareness of privacy concerns and the willingness to interact with an audience differently in light of them.

And this awareness must be companywide. It’s not just marketing that engages with customers and prospects. Sales, customer service, and other departments often interact with a company’s audience. So, everyone must be educated about data privacy and expected to comply with applicable laws and company policies.

Marketing and Data Privacy Trends

Although it’s an oxymoron, the data protection genie is now out of the bottle! Not only does that mean that companies must change how they collect and manage data today, but they must also closely follow the ongoing evolution of data privacy regulations and expectations.

Changes in this area aren’t a “one-and-done” situation. For the foreseeable future, data privacy compliance will be a bit of a moving target. Again, this doesn’t have to hobble a company’s marketing and sales efforts or hurt its performance.

Adhering to privacy laws starts with anticipating them. And steps for anticipating them can be as simple as setting up a few Google Alerts (with phrases like “data privacy,” “marketing privacy,” and “consumer data protection,” etc.), following marketing trade associations, and engaging with a marketing agency that understands data privacy.

Reaching Consumers Who Want To Be Reached

Yes, there are new data privacy challenges that companies must wrestle with. But ultimately, empowering consumers to determine how their personal information is used benefits them and the businesses trying to reach them.

While the pool of prospective customers will likely shrink, those who remain will be people who are happy to hear from a company and see its ads. As a result, businesses will spend less time chasing unproductive leads and more time interacting with promising prospects. This should make everyone from executives to marketing teams and sales reps happy.

Eliminating the Unknowns

It’s true that we tend to fear what we don’t understand. That certainly applies to unknowns like how new data privacy laws will affect our businesses.

You can address these uncertainties by diving into them headfirst. Doing some research and documenting your findings in a data privacy policy (or enhancing an existing one) will give everyone in your organization greater peace of mind about what’s ahead.

We’re happy to provide guidance as you look to modify your marketing strategies.

Contact The Creative Alliance today


About The Creative Alliance, Lafayette, CO

The Creative Alliance is a results-based, digital marketing company with a history of growing successful businesses. www.thecreativealliance.com

Media Contact: Jodee Goodwin – 303-665-8101

Source: Story.KISSPR.com

To view the source version of this press release, please visit https://www.newsfilecorp.com/release/160424

[ad_2]

Source link

]]>
https://cbomo.com/boulder-colorado-agency-the-creative-alliance-offers-crucial-insights-on-data-privacy-regulations-effects-on-marketing/feed/ 0
How will new UK Data Privacy laws affect marketers? – Affiliate Marketing Agency, Media, Training & Events https://cbomo.com/how-will-new-uk-data-privacy-laws-affect-marketers/ https://cbomo.com/how-will-new-uk-data-privacy-laws-affect-marketers/#respond Sat, 18 Mar 2023 14:55:12 +0000 https://cbomo.com/how-will-new-uk-data-privacy-laws-affect-marketers/ [ad_1]

When the UK left the European Union, this meant a departure from the bloc’s flagship data privacy legislation, the GDPR. In its place, the government introduced the Data Protection Act 2018, which was designed to replicate many of the details found in the GDPR and replace the existing Data Protection Act 1998.

Earlier this month, the government introduced a revised version of the act, named the Data Protection and Digital Information Bill, to parliament. What changes to the law can we expect to see in this updated bill, and how will they impact marketers? Let’s find out.

Legitimate interest

Under the terms of GDPR, customer data collected by businesses can be used without the express consent of said customers as long as the business had a ‘legitimate interest’ for doing so. This particular law has long been criticised as vague and unclear. As a result, many businesses opt to play it safe and limit their use of customer data to avoid any potential penalties.

With the new Data Protection and Digital Information Bill, the government has attempted to clarify what legitimate interest means. Now, attracting customers through direct marketing means is now classed as a legitimate interest. This will give marketers more confidence and encourage increased use of customer data.

Speaking about this particular reform, Data and Marketing Association CEO Chris Combemale said: “Attracting and retaining customers and donors is a fundamental legitimate interest of businesses and charities, so we are delighted the government has acknowledged this in the reforms to help drive innovation and growth.

“It was important to our community that we focused reforms on the needs of both businesses and their customers to ensure the right balance was achieved for all.”

Reducing paperwork 

Businesses operating under GDPR rules are required to keep stringent records regarding the collection, storage, and management of customer data. This can be a laborious and time-consuming process, requiring significant manpower and resources. However, it is essential, as failing to follow the rules can incur fines of up to €10 million or 2% of a company’s annual turnover.

In the updated UK bill, the government is looking to scale back the record-keeping requirements previously seen under GDPR. This is part of an intended ‘no-nonsense approach’ designed to streamline business operations and reduce bureaucracy.

This will be particularly beneficial for smaller companies that do not have the resources required to meet the GDPR standards. Now, marketers who are not processing high volumes of customer data will not be required to complete vast amounts of paperwork.

This will be a welcome change for smaller businesses and marketing firms. It will free them to focus on other areas of their business and drive growth.

Relaxed consent regulations

Consent is a fundamental part of the GDPR. Under the terms of the legislation, businesses must have a legal basis for collecting and processing customer data. The easiest way to do this is by getting the consent of customers, often through opt-in forms displayed on company websites.

With the new UK bill, the government hopes to reduce the need for companies to seek consent for gathering customer data, particularly when using cookies to track customers’ online activity.

A reduction in the prevalence of cookie consent banners and pop-up ads will allow marketers to streamline and optimise their digital platforms, making for a more user-friendly experience and more visually appealing designs.

Conclusion

The updated Data Protection and Digital Information Bill is currently being deliberated by parliament. It looks set to shake up data privacy regulations in the UK and will be of particular interest to affiliate marketers and other digital business owners.

By clarifying legitimate interest, reducing the amount of required paperwork, and relaxing consent regulations, the government is hoping to modernise the UK’s data privacy laws and foster a pro-growth environment that put businesses at the forefront.

If you’re looking for more affiliate and social media marketing knowledge, check out our blog for the latest news and affiliate marketing insights. If you want a more personalised approach, book a free call with a member of our team.

For the very best advice from industry experts, register for our Amplify Action Day. This will give you access to masterclasses and panel discussions from key industry figures, which you can stream on demand from our website for just £99.

[ad_2]

Source link

]]>
https://cbomo.com/how-will-new-uk-data-privacy-laws-affect-marketers/feed/ 0