Google Says Fixing Headings Won’t Change Rankings via @sejournal, @martinibuster

Google’s John Mueller answered a question on Reddit about heading elements, confirming a slight impact but downplaying its significance, saying a lot about how Google uses headings.

Hierarchical Heading Structure

Hierarchical and hierarchy in the context of heading elements (H1, H2, etc.) refers to the organization of headings in order of importance or structure. In this context, the word “importance” doesn’t mean importance as a ranking factor, it means importance to the structure of a web page.

Generally a web page could have one H1, indicative of the topic of the entire page and multiple H2 headings that signal what each section of a web page is about. For Google’s purposes, the first heading doesn’t have to be an H1, it can be an H2. Google isn’t mandated to use the first heading as the overall topic, it’s not a directive to their search algorithms where an SEO controls how Google interprets a heading.

The technical specifications of heading elements are found on the pages of the World Wide Web Consortium (W3C), the standards making body that, among many things, defines the purpose and use of HTML elements like headings.

Google generally follows the official W3C technical specifications of HTML elements but for practical purposes isn’t strict about it because many websites use headings for style not semantic purposes.

Are Incorrectly Ordered Headings Harmful To SEO?

The Redditor wanted to know if using the heading elements out of order was “harmful” and to what degree. They used the word “sequential” but the precise word is hierarchical.

They wanted to know how bad was it if the headings were out of order or if one of the headings was skipped entirely.

This is the question:

“How Harmful is having Non sequential header Tags? Like having a h4 title and h1 tags below Or Having a h4, h3 h5 but not h2 tags?”

H1, H2 Headings Have A Slight Impact

Google’s John Mueller confirmed that the heading order has a slight impact. He didn’t say it was a ranking factor nor did he say what kind of impact the heading order had. It could be that the heading order makes it easier for search engines to understand the web page, which is what I believe (meaning, it’s just my opinion and you’re entitled to yours).

This is Mueller’s answer:

“Doing things properly (right order headings) is a good practice, it helps search engines lightly to better understand your content, and it’s good for accessibility. If you’re setting up a new site, or making significant changes on your templates, or just bored :-), then why not take the extra 10 minutes to get this right.”

Sometimes it’s difficult to control the headings because a template might use headings to style sections of a web page, like in the footer or a sidebar. In the context of a WordPress site that means having to create a child template that controls the styles and change the CSS for those sections of the template so that they use CSS and not headings to style them.

Other than that, the heading structure is entirely under control of the publisher, site owner, or SEO.

Yet, having the keywords in the headings might not be enough because the purpose of heading elements is to communicate what a section of a web page is about and, as Mueller goes on to say, headings play a role for accessibility.

Google Says Fixing Headings Won’t Change Rankings

This is the part that some SEOs may find confusing because Google says that fixing the hierarchical structure of headings will not improve the rankings of a website.

A long time ago, like twenty four years ago, heading elements were a critical activity for ranking in Google. I know because I was an SEO in the early 2000s and experienced this first hand. By 2005 the impact to rankings had significantly diminished. I know it was diminished because I was a digital marketer when headings stopped making a critical impact and had evolved to become a signal of what a section of a web page is about.

The search results were full of sites that had no heading elements, it was hard not to notice the change.

But for some reason many in the SEO industry continued to believe that headings are a strong ranking factor. John Mueller’s statement about the diminished impact of heading elements to search rankings confirms the changed role that heading elements play today.

Mueller continued his answer:

“That said, if you have an existing site, fixing this isn’t going to change your site’s rankings; I suspect you’ll find much bigger value in terms of SEO by looking for ways to significantly up-value your site overall.”

What Mueller is talking about is the difference between making a web page for search engines (worrying about how Google will interpret heading elements) and creating a web page for users (worrying if the page contains useful information that is on-topic flows in a logical order).

His statement gives a clue to how Google uses heading elements and is good advice.

Read the discussion:

Non Sequential header tags?

Google Chrome Drops Support For First Input Delay: What It Means via @sejournal, @MattGSouthern

Google Chrome has officially ended support for the First Input Delay (FID) metric, marking a transition to prioritizing Interaction to Next Paint (INP).

The announcement by Rick Viscomi, who oversees web performance developer relations for the Chrome team, confirms INP as the core metric for evaluating interaction responsiveness.

Today’s announcement follows the replacement of FID with INP as a Core Web Vital in May.

The following tools will stop reporting FID data over the next few days:

  • PageSpeed Insights
  • Chrome User Experience Report (CrUX)
  • web-vitals.js
  • Web Vitals extension

Background

The move to replace FID with INP stems from limitations in capturing the full scope of interaction responsiveness on the web.

FID only measured the delay between a user’s input and the browser’s response, overlooking other critical phases.

INP takes a more holistic approach by measuring the entire process, from user input to visual updates on the screen.

Transition Period

While the web-vitals.js library will receive a version bump (5.0) to accommodate the change, most other tools will stop reporting FID data without a version update.

The CrUX BigQuery project will remove FID-related fields from its schema starting with the 202409 dataset, scheduled for release in October.

To aid developers in the transition, the Chrome team is also retiring the “Optimize FID” documentation, redirecting users to the updated “Optimize INP” guidance.

What To Do Next

Here are some steps to take to in light of the transition from FID to INP:

  1. Familiarize yourself with the INP metric by reviewing the official documentation on web.dev. Understand how INP measures the full lifecycle of an interaction from input to visual update.
  2. Audit your site’s current INP performance using tools like PageSpeed Insights or real-user monitoring services that support INP. Identify areas where interaction responsiveness needs improvement.
  3. Consult the “Optimize INP” guidance on web.dev for best practices on reducing input delay, optimizing event handling, minimizing layout thrashing, and other techniques to enhance INP.
  4. Update any performance monitoring tools or custom scripts that currently rely on the deprecated FID metric to use INP instead. For web-vitals.js users, be prepared for the breaking change in version 5.0.
  5. If leveraging the CrUX BigQuery dataset, plan to update data pipelines to handle the schema changes, removing FID fields after the 202409 release in October.

By taking these steps, you can ensure a smooth migration to INP.


Featured Image: Mojahid Mottakin/Shutterstock

New WordPress 6.6.2 Fixes Important Display Issue via @sejournal, @martinibuster

WordPress 6.6.2 introduces 26 bug fixes, including an important one that resolves a CSS issue affecting site appearance. Fifteen fixes address the WordPress core, while eleven focus on the Gutenberg block editor.

Maintenance Release – CSS Specificity

WordPress maintenance releases aren’t generally major updates to WordPress and are intended to fix issues that were introduced through new features from the last major update, in this case version 6.6.

This maintenance release is no different and contains a fix for a feature called CSS specificity that was introduced in WordPress 6.6.

CSS is the code that controls what a web page looks like in terms of colors, sizes, margins and spaces. Specificity means what style belongs to a web page element (like a section of page or something else more granular). CSS Specificity is a reference to a set of rules belonging to the WordPress core that determine which CSS property applies when there is ambiguity as to which property should apply. The purpose of CSS Specificity was initially developed as a way to make it simple for theme developers to overrule WordPress core styles with their own styles.

However it was discovered that the implementation of CSS Specificity introduced several issues that significantly affected what the web page looked like.

WordPress 6.6.2 fixes this issue and for that reason publishers who’ve had issues should consider updating.

Other Fixes

This maintenance release contains 15 fixes to the WordPress core and 11 fixes to the Gutenberg block editor.

Examples of fixes in the Core included in the maintenance release:

Sample Of Fixes In Gutenberg:

Reception Of 6.6.2

Publishers who haven’t experienced this update should feel confident about upgrading to this version. Initial reports in the private Dynamic WordPress Facebook Group is positive, with the admin of the group, David McCan, reporting he’d rolled it out to ten sites without experiencing any issues (link to discussion, must join the Facebook group to read).

Read The Official WordPress announcement

WordPress 6.6.2 Maintenance Release

Featured Image by Shutterstock/Cast Of Thousands

Meta Announces Updates To Business Tools Affecting Advertisers via @sejournal, @MattGSouthern

Meta is restricting data access in its Business Tools. Custom audiences and ad sets may be affected or paused. Advertisers need to adapt their tracking and reporting strategies.

Meta has informed businesses of upcoming changes to its Business Tools that may impact how you use the platforms for advertising.

Key Changes

According to an email sent to advertisers, Meta plans to automatically restrict certain data, including parts of URLs and custom parameters.

The company states this reduces the potential for sharing information prohibited by its Business Tools Terms.

Potential Effects On Advertisers

The email outlines several ways these changes may affect businesses:

  1. Custom audiences may require adjustments if they use rules that include data that will be restricted.
  2. Some ad sets may be paused if custom audiences decrease or can no longer be updated.
  3. Events Manager monitoring will change, with restricted data no longer being included in reports.

Meta’s Recommendations

For advertisers whose ads are paused, Meta recommends either switching the custom audience or creating a new one with standard parameters.

The company advises businesses to check their Events Manager Overview to see which data these changes will affect.

Industry Response

Navah Hopkins, Optmyzr Brand Evangelist, commented on LinkedIn about the announcement.

Hopkins noted that the update indicates Meta is prioritizing privacy and that the ability to report and target based on ad interactions may be affected.

She states:

“Really important update on Meta ads: not only will data be restricted, ads with hyper targeted UTMs might be paused!

This is a critical reminder that Meta (Facebook/Instagram/WhatsApp) is taking privacy very seriously and our ability to report and target based on seeing/clicking ads is no longer a guaranteed state.”

Hopkins advised advertisers using UTMs to monitor for paused ads and be prepared to adjust their inclusions. She also suggested informing clients or stakeholders who expect detailed reporting about these upcoming changes.

She added:

“If your ads use UTMs, keep an eye out for paused ads and be prepared to make some compromises on what you include.

Most of us have been moving away from the “perfect” targeting world, towards a privacy compliant one. However, if your clients/stakeholders still hold you accountable for that reporting, be sure to keep them in the know!”

Hopkins shares a screenshot of the email she received from Meta:

Screenshot from: linkedin.com/in/navahhopkins/, September 2024.

Practical Steps For Businesses

In light of this change, and considering Hopkins’ advice, businesses can take several actions:

  • Audit UTMs: Review your tracking parameters for potentially restricted info.
  • Streamline tracking: Focus on core UTM elements like source, medium, and campaign name.
  • Set up ad pause alerts: Stay on top of affected campaigns.
  • Explore alternatives: Look into privacy-compliant analytics tools beyond Meta’s ecosystem.
  • Revamp reporting: Adjust your processes to account for limited data availability.
  • Communicate changes: Keep clients and teams informed about the impact on metrics and performance.
  • Develop privacy-friendly targeting: Test new strategies using broader audience segments.
  • Stay updated: Regularly check Meta’s policies to anticipate future changes.

Advertisers can adapt to Meta’s evolving privacy landscape by implementing these steps while minimizing campaign disruptions.

Context

These changes come amid a broader industry shift towards increased user privacy measures.

As digital platforms evolve their practices, advertisers may need to adapt their strategies to align with new data usage policies.

Meta hasn’t specified an exact date for implementing these changes. Advertisers are advised to stay informed and prepare for potential adjustments.


Featured Image: mundissima/Shutterstock

Google Ads To Phase Out Enhanced CPC Bidding Strategy via @sejournal, @MattGSouthern

Google has announced plans to discontinue its Enhanced Cost-Per-Click (eCPC) bidding strategy for search and display ad campaigns.

This change, set to roll out in stages over the coming months, marks the end of an era for one of Google’s earliest smart bidding options.

Dates & Changes

Starting October 2024, new search and display ad campaigns will no longer be able to select Enhanced CPC as a bidding strategy.

However, existing eCPC campaigns will continue to function normally until March 2025.

From March 2025, all remaining search and display ad campaigns using Enhanced CPC will be automatically migrated to manual CPC bidding.

Advertisers who prefer not to change their campaigns before this date will see their bidding strategy default to manual CPC.

Impact On Display Campaigns

No immediate action is required for advertisers running display campaigns with the Maximize Clicks strategy and Enhanced CPC enabled.

These campaigns will automatically transition to the Maximize Clicks bidding strategy in March 2025.

Rationale Behind The Change

Google introduced Enhanced CPC over a decade ago as its first Smart Bidding strategy. The company has since developed more advanced machine learning-driven bidding options, such as Maximize Conversions with an optional target CPA and Maximize Conversion Value with an optional target ROAS.

In an email to affected advertisers, Google stated:

“These strategies have the potential to deliver comparable or superior outcomes. As we transition to these improved strategies, search and display ads campaigns will phase out Enhanced CPC.”

What This Means for Advertisers

This update signals Google’s continued push towards more sophisticated, AI-driven bidding strategies.

In the coming months, advertisers currently relying on Enhanced CPC will need to evaluate their options and potentially adapt their campaign management approaches.

While the change may require some initial adjustments, it also allows advertisers to explore and leverage Google’s more advanced bidding strategies, potentially improving campaign performance and efficiency.


FAQ

What change is Google implementing for Enhanced CPC bidding?

Google will discontinue the Enhanced Cost-Per-Click (eCPC) bidding strategy for search and display ad campaigns.

  • New search and display ad campaigns can’t select eCPC starting October 2024.
  • Existing campaigns will function with eCPC until March 2025.
  • From March 2025, remaining eCPC campaigns will switch to manual CPC bidding.

How will this update impact existing campaigns using Enhanced CPC?

Campaigns using Enhanced CPC will continue as usual until March 2025. After that:

  • Search and display ad campaigns employing eCPC will automatically migrate to manual CPC bidding.
  • Display campaigns with Maximize Clicks and eCPC enabled will transition to the Maximize Clicks strategy in March 2025.

What are the recommended alternatives to Enhanced CPC?

Google suggests using its more advanced, AI-driven bidding strategies:

  • Maximize Conversions – Can include an optional target CPA (Cost Per Acquisition).
  • Maximize Conversion Value – Can include an optional target ROAS (Return on Ad Spend).

These strategies are expected to deliver comparable or superior outcomes compared to Enhanced CPC.

What should advertisers do in preparation for this change?

Advertisers need to evaluate their current reliance on Enhanced CPC and explore alternatives:

  • Assess how newer AI-driven bidding strategies can be integrated into their campaigns.
  • Consider transitioning some campaigns earlier to adapt to the new strategies gradually.
  • Leverage tools and resources provided by Google to maximize performance and efficiency.

This proactive approach will help manage changes smoothly and explore potential performance improvements.


Featured Image: Vladimka production/Shutterstock

Reddit’s Strategy To Attract Advertisers: Interest-Based Targeting via @sejournal, @MattGSouthern

As Reddit continues investing in its advertising platform, marketers and business owners can expect new ways to reach engaged audiences across various topics and communities.

In a recent episode of the AdExchanger Talks podcast, Jyotsna (Jyoti) Vaidee, Reddit’s VP of Ads Product, shared insights into how the platform is evolving to serve advertisers better while maintaining a positive user experience.

Authentic Conversations With Interested Consumers

One of Reddit’s key differentiators is its ability to facilitate authentic conversations among passionate users.

This presents a unique opportunity for marketers to connect with target audiences in a trusted and contextually relevant environment.

Vaidee highlights the potential for businesses to engage with interested users, stating:

“60% of Redditors actually want brands to participate in their communities and interact with them.”

By leveraging Reddit’s community-driven discussions, advertisers can deliver more targeted and impactful ad experiences that resonate with their desired demographics.

Reddit’s Interest-Based Ad Targeting

Vaidee discussed Reddit’s approach to ad targeting, which primarily relies on interest-based targeting derived from users’ interactions with content on the platform.

She mentioned moving towards auto-targeting, which leverages machine learning to analyze user behavior and deliver more relevant ads.

This means advertisers can reach audiences based on their demonstrated interests, even if those interests aren’t directly related to the advertiser’s product or service.

Vaidee states:

“On the targeting side… we have specific features we have launched, like keyword targeting. By our trajectory, what we’re moving towards is more and more, especially for the lower funnel specifically, is towards auto-targeting, and auto-targeting gives us the ability to not only build models on what we know about this specific user. But also, we’re learning and evolving as this user interacts with content on Reddit, as this user interacts with our ads, even.”

Vaidee gave the example of a yoga brand discovering that users interested in organic food are also likely to engage with their products.

Auto-targeting can help uncover these non-obvious connections, allowing advertisers to expand their reach effectively.

AI-Driven Advertising Solutions

Reddit heavily invests in AI-driven advertising solutions to help marketers achieve better results.

Vaidee emphasized the company’s focus on developing a full-funnel ad solution that leverages AI to enhance advertisers’ performance.

With the integration of AI capabilities, businesses can expect more advanced targeting options, auto-optimization of ad placements, and creative customization.

Vaidee states:

“We don’t have to make the same mistakes that I saw, you know, our other companies make, and then have to evolve and, you know, do, you know, migrations and whatnot to move towards this world of AI and Gen AI. I think we can quickly leapfrog to where we want to be. And I think technology, particularly Gen AI, is making it a more level playing field for smaller players.”

Expanding Ad Offerings While Prioritizing User Experience

As Reddit expands its ad offerings, it remains committed to ensuring a positive user experience.

Vaidee noted that Reddit balances monetization efforts with user controls and preferences.

Marketers can take advantage of new ad placements across various surfaces within Reddit, such as the feed, comments, and search results.

However, the platform also has user controls for ad categories like religious and political content, allowing individuals to tailor their ad experience.

This balance between monetization and user experience creates a win-win scenario for advertisers and Redditors.

Businesses can reach engaged audiences non-intrusively while users maintain control over the ads they see.

Measuring Ad Performance Across The Funnel

Vaidee discussed Reddit’s efforts to provide full-funnel measurement solutions.

The platform has launched features like Reddit Brand Lift and Conversion Lift, which help advertisers understand the impact of their campaigns on brand awareness and conversions.

Additionally, Reddit is working on integrating with advertisers more closely through third-party partnerships and the Conversions API (CAPI). These integrations will give advertisers more robust data to optimize their campaigns and measure ROI.

Vaidee states:

“We’re very focused on building for the full funnel of measurement. As you know, not too long ago, Reddit launched our Reddit Brand Lift, our in-house product, and we launched Conversion Lift. We are doing a lot in terms of integrating with advertisers more closely, whether through third parties or CAPI integration, so we can understand the signals better, which obviously translates to better performance and, you know, better measurement.”

Key Takeaways For Marketers & Business Owners

  1. Reddit’s unique audience targeting capabilities allow advertisers to reach users based on their demonstrated interests, even if they aren’t directly related to the advertiser’s product or service. This can help uncover new opportunities for audience expansion and engagement.
  2. The platform’s focus on facilitating authentic conversations within passionate communities provides a trusted environment for brands to connect with their target audiences. However, marketers should approach these communities with respect and aim to contribute value to the discussions.
  3. Reddit invests heavily in AI-driven advertising solutions, which can help marketers improve targeting, optimize ad placements, and enhance creative customization. Staying informed about new AI-powered features can help advertisers remain competitive on the platform.
  4. As Reddit expands its ad offerings, it remains committed to balancing monetization and user experience. Marketers should be mindful of this balance and aim to create non-intrusive ad experiences that align with user preferences.
  5. The platform offers full-funnel measurement solutions, such as Reddit Brand Lift and Conversion Lift, to help advertisers assess the impact of their campaigns. Advertisers should use these tools and closely monitor their campaign performance to optimize for better results.
  6. While Reddit presents exciting opportunities for advertisers, it is essential to approach the platform with a tailored strategy considering its user base’s unique characteristics and community dynamics. Marketers should invest time in understanding the platform’s ad offerings, targeting capabilities, and best practices to maximize their success on Reddit.

FAQ

How does Reddit’s interest-based ad targeting work?

Reddit’s interest-based ad targeting relies on user interactions with content on the platform. Advertisers can reach audiences based on demonstrated interests observed through their activities. This includes engagement with topics or communities, even if these interests don’t directly relate to the advertiser’s product or service.

  • Uses machine learning to analyze user behavior
  • Enables targeting beyond direct product interest
  • Allows discovery of non-obvious connections
  • Maximizes reach to interested users

For example, a yoga brand could target users interested in organic food, as they will likely engage with their products.

What is the role of AI in Reddit’s advertising solutions?

AI plays a significant role in Reddit’s advertising solutions. It helps enhance performance, productivity, and potential through advanced targeting options, auto-optimization of ad placements, and creative customization.

  • Targeting options: Advanced targeting allows for more focused ad delivery to relevant audiences.
  • Auto-optimization: AI optimizes ad placements for better performance.
  • Customization: AI helps create more tailored ad content.

This integration of AI allows marketers to deliver the right message at the right time, improving campaign effectiveness and ROI.

How is Reddit balancing ad offerings with user experience?

As Reddit expands its ad offerings, it commits to a positive user experience. The platform ensures this balance by implementing user controls and preferences for ads.

  • Ad placements: New ad placements across various surfaces like feed, comments, and search results.
  • User controls: Users can manage ad categories such as religious and political content.
  • Non-intrusive ads: Ads are designed to align with user preferences.

This approach benefits both advertisers and users. Businesses reach engaged audiences while users retain control over their ad experience.

What tools does Reddit offer for measuring ad performance?

Reddit provides several tools to help advertisers measure ad performance across the funnel. This includes in-house products and third-party integrations.

  • Reddit Brand Lift: Measures impact on brand awareness.
  • Conversion Lift: Assesses the effect on conversions.
  • Conversions API (CAPI): Integrates with third-party tools for better data insights.

These tools enable advertisers to optimize their campaigns and measure ROI effectively.


Featured Image: Tada Images/Shutterstock

8 Out Of 10 TikTok Videos By Brands Fail To Capture Attention via @sejournal, @gregjarboe

Despite TikTok’s increasing importance to marketers, the majority of brands are not getting it right, and their videos on the social media platform are under-performing.

According to new research, 84% of the video content released by brands on TikTok fails to generate strong positive emotions, capture attention, or enhance brand recall.

The mini-study conducted by DAIVID, which aids advertisers in assessing and enhancing the impact of their content on a large scale, also found that 24% of TikTok videos were triggering strong negative emotions, potentially damaging to brand reputations.

Their study evaluates the effectiveness of video content being shared on the social platform using a variety of metrics, including the positive and negative emotions elicited by each video, the attention they generated, and the impact the content had on various brand metrics, such as brand recall.

The study’s findings include:

  • Only 16% of the branded TikTok videos scored higher than the average Creative Effectiveness Score (CES) of 5.8 out of 10 – a composite metric created by DAIVID that combines the three main drivers of effectiveness: attention, emotions, and memory.
  • 60% of branded TikTok videos were simply forgettable, with below-average positive emotional responses and below-average brand recall. They also ranked above the global average for causing confusion and boredom.
  • 24% of branded TikTok videos triggered strong, extreme, negative emotions like anxiety, fear, discomfort, disgust, and shame.
  • Overall, branded TikTok content was 9% less likely to generate intense positive emotions than the global average and attracted 2.5% less attention.

In a press release, Ian Forrester, the CEO and founder of DAIVID, said:

“This research reveals that the vast majority of content being released on TikTok simply isn’t up to scratch. Sixty per cent of the creative is simply forgettable, under-indexing for positive emotions and over-indexing for negative emotions such as confusion and boredom. In one ear and out of the other for the viewer.”

He added:

“Yet, even more concerning for brands are the 24% of videos that evoked intense, extreme, negative emotions such as disgust, anxiety and shame. If these emotions are attached to the brand, they’re likely to do the brand damage, negatively impacting future sales potential.

This should be a wake-up call to brands and underlines the importance of analyzing the effectiveness of your social creative beyond just the basic reach, impressions and engagement rate data provided by the platforms to understand the real impact that it’s having.”

What Marketers Can Do To Avoid Negative Reactions

I realize that many marketers working at other big brands will ask, what should I do next?

For starters, read “39 Emotions Digital Marketers Can Use In Advertising.”

You’ll discover the latest research conducted at the University of California, Berkeley; Stanford University; and the Ehrenberg-Bass Institute for Marketing Science at the University of South Australia has uncovered: “Generally, it’s advisable for … brands to leave us with a positive emotion.”

Next, read “TikTok Trends 2024: The Most Important Trends To Watch.” Among other things, you’ll learn that TikTok launched its Creative Center earlier this year.

This can help you find inspiration by giving you insights into what type of content is trending in your country, broken down into hashtags, whether lip-syncing audio, popular creators, or specific video formats.

Finally, read the “10 Most Emotionally Engaging Olympics Ads (For Paris 2024 & For All Time).”

Yes, these video ads were uploaded to YouTube, not TikTok. But Procter & Gamble (P&G) dominates DAIVID’s all-time chart, with five of the top most emotionally engaging Olympics ads – including the top three tear-jerking positions.

So, you’ll want to figure out what they know that you don’t.

Spoiler alert: Brands should focus on creating more TikTok videos that generate intense positive emotions, including hope, admiration, amusement, and trust, as well as making fewer TikTok videos that evoke intense negative emotions, such as anger, disgust, fear, and anxiety.

We shouldn’t need new research to reinforce this important lesson. But, if 84% of TikTok videos by brands are underperforming and 24% generate a strong negative reaction, then I guess it’s time to ask some hard questions.

What SEO Pros Should Do To Seize This Opportunity

Some SEO professionals might mistakenly assume that they should “move along – nothing to see here” because they don’t optimize TikTok videos. But they should reconsider.

TikTok videos have been appearing in Google’s search results for a couple of years. If you need to verify this, then Google “most viewed TikTok videos in 24 hours.”

So, what should you do about this?

If you are a savvy SEO, then you’re already incorporating relevant keywords in your video title, caption, and hashtags, leveraging trending topics, engaging with your audience, and collaborating with other creators to increase visibility.

But if another group within your company or client is cranking out TikTok content without optimizing it first, then reach out and suggest that you get together and maybe suggest a “lunch and learn” session, where training can occur in an informal setting.

If you want to do a little homework to make suggestions on optimizing TikTok content, try reading the following.

For starters, read Video SEO: 10 Steps to Optimizing Videos for Search and Discovery.” It focuses on video SEO best practices for YouTube.

But if you plan to optimize videos for TikTok.com, which gets 2.7 billion visits a month worldwide, then you should also optimize videos for YouTube.com, which gets 73.0 billion visits a month worldwide, according to Semrush.

Next, read The Future of SEO Lies in the “Messy Middle” of the Purchase Journey.”

Among other things, you’ll learn that people look for information about products and brands in a looping process across a huge array of online sources, including search engines, social video platforms, and review websites, in two mental modes: exploration and evaluation.

Finally, check out “Customer Personas Can Transform SEO, PPC, and Content Marketing,” which was published in March 2021.

It says:

“… decision-making is not a rational process, but one driven mainly by how people feel. The rational brain layers on reasons for our choices only after they’re made.” This explains why video should be a critical component of any future SEO strategy.

It’s Time To Pay Attention To Video SEO

Many SEO professionals have been busy preparing for the threat of a “searchquake” that was supposed to be triggered by Search Generative Experiences (SGE), so they may have overlooked the opportunity of video SEO.

But TikTok does present an opportunity for many brands with huge potential if you are one of the brands getting it right.

It’s time for SEO professionals, as well as marketers, to pay attention to video marketing and to do their homework to understand why some brands are generating negative emotions. And to learn how they can be the ones that get the positive reactions.

The data from above was taken from a study conducted by DAIVID, a global creative effectiveness platform.

More resources: 


Featured Image: Pheelings Media/Shutterstock

Google’s Guidance About The Recent Ranking Update via @sejournal, @martinibuster

Google’s Danny Sullivan explained the recent update, addressing site recoveries and cautioning against making radical changes to improve rankings. He also offered advice for publishes whose rankings didn’t improve after the last update.

Google’s Still Improving The Algorithm

Danny said that Google is still working on their ranking algorithm, indicating that more changes (for the positive) are likely on the way. The main idea he was getting across is that they’re still trying to fill the gaps in surfacing high quality content from independent sites. Which is good because big brand sites don’t necessarily have the best answers.

He wrote:

“…the work to connect people with “a range of high quality sites, including small or independent sites that are creating useful, original content” is not done with this latest update. We’re continuing to look at this area and how to improve further with future updates.”

A Message To Those Who Were Left Behind

There was a message to those publishers whose work failed to recover with the latest update, to let them know that Google is still working to surface more of the independent content and that there may be relief on the next go.

Danny advised:

“…if you’re feeling confused about what to do in terms of rankings…if you know you’re producing great content for your readers…If you know you’re producing it, keep doing that…it’s to us to keep working on our systems to better reward it.”

Google Cautions Against “Improving” Sites

Something really interesting that he mentioned was a caution against trying to improve rankings of something that’s already on page one in order to rank even higher. Tweaking a site to get from position six or whatever to something higher has always been a risky thing to do for many reasons I won’t elaborate on here. But Danny’s warning increases the pressure to not just think twice before trying to optimize a page for search engines but to think three times and then some more.

Danny cautioned that sites that make it to the top of the SERPs should consider that a win and to let it ride instead of making changes right now in order to improve their rankings. The reason for that caution is that the search results continue to change and the implication is that changing a site now may negatively impact the rankings in a newly updated search index.

He wrote:

“If you’re showing in the top results for queries, that’s generally a sign that we really view your content well. Sometimes people then wonder how to move up a place or two. Rankings can and do change naturally over time. We recommend against making radical changes to try and move up a spot or two”

How Google Handled Feedback

There was also some light shed on what Google did with all the feedback they received from publishers who lost rankings. Danny wrote that the feedback and site examples he received was summarized, with examples, and sent to the search engineers for review. They continue to use that feedback for the next round of improvements.

He explained:

“I went through it all, by hand, to ensure all the sites who submitted were indeed heard. You were, and you continue to be. …I summarized all that feedback, pulling out some of the compelling examples of where our systems could do a better job, especially in terms of rewarding open web creators. Our search engineers have reviewed it and continue to review it, along with other feedback we receive, to see how we can make search better for everyone, including creators.”

Feedback Itself Didn’t Lead To Recovery

Danny also pointed out that sites that recovered their rankings did not do so because of they submitted feedback to Google. Danny wasn’t specific about this point but it conforms with previous statements about Google’s algorithms that they implement fixes at scale. So instead of saying, “Hey let’s fix the rankings of this one site” it’s more about figuring out if the problem is symptomatic of something widescale and how to change things for everybody with the same problem.

Danny wrote:

“No one who submitted, by the way, got some type of recovery in Search because they submitted. Our systems don’t work that way.”

That feedback didn’t lead to recovery but was used as data shouldn’t be surprising. Even as far back as the 2004 Florida Update Matt Cutts collected feedback from people, including myself, and I didn’t see a recovery for a false positive until everyone else also got back their rankings.

Takeaways

Google’s work on their algorithm is ongoing:
Google is continuing to tune its algorithms to improve its ability to rank high quality content, especially from smaller publishers. Danny Sullivan emphasized that this is an ongoing process.

What content creators should focus on:
Danny’s statement encouraged publishers to focus on consistently creating high quality content and not to focus on optimizing for algorithms. Focusing on quality should be the priority.

What should publishers do if their high-quality content isn’t yet rewarded with better rankings?
Publishers who are certain of the quality of their content are encouraged to hold steady and keep it coming because Google’s algorithms are still being refined.

Read the post on LinkedIn.

Featured Image by Shutterstock/Cast Of Thousands

Google Analytics Update: Plot Up To Five Metrics At Once via @sejournal, @MattGSouthern

Google has rolled out changes to Analytics, adding features to help you make more sense of your data.

The update brings several key improvements:

  • You can now compare up to five different metrics side by side.
  • A new tool automatically spots unusual trends in your data.
  • A more detailed report on transactions gives a closer look at revenue.
  • The acquisition reports now separate user and session data more clearly.
  • It’s easier to understand what each report does with new descriptions.

Here’s an overview of these new features, why they matter, and how they might help improve your data analysis and decision-making.

Plot Rows: Enhanced Data Visualization

The most prominent addition is the “Plot Rows” feature.

You can now visualize up to five rows of data simultaneously within your reports, allowing for quick comparisons and trend analysis.

This feature is accessible by selecting the desired rows and clicking the “Plot Rows” option.

Anomaly Detection: Spotting Unusual Patterns

Google Analytics has implemented an anomaly detection system to help you identify potential issues or opportunities.

This new tool automatically flags unusual data fluctuations, making it easier to spot unexpected traffic spikes, sudden drops, or other noteworthy trends.

Improved Report Navigation & Understanding

Google Analytics has added hover-over descriptions for report titles.

These brief explanations provide context and include links to more detailed information about each report’s purpose and metrics.

Key Event Marking In Events Report

The Events report allows you to mark significant events for easy reference.

This feature, accessed through a three-dot menu at the end of each event row, helps you prioritize and track important data points.

New Transactions Report For Revenue Insights

For ecommerce businesses, the new Transactions report offers granular insights into revenue streams.

This feature provides information about each transaction, utilizing the transaction_id parameter to give you a comprehensive view of sales data.

Scope Changes In Acquisition Reports

Google has refined its acquisition reports to offer more targeted metrics.

The User Acquisition report now includes user-related metrics such as Total Users, New Users, and Returning Users.

Meanwhile, the Traffic Acquisition report focuses on session-related metrics like Sessions, Engaged Sessions, and Sessions per Event.

What To Do Next

As you explore these new features, keep in mind:

  • Familiarize yourself with the new Plot Rows function to make the most of comparative data analysis.
  • Pay attention to the anomaly detection alerts, but always investigate the context behind flagged data points.
  • Take advantage of the more detailed Transactions report to understand your revenue patterns better.
  • Experiment with the refined acquisition reports to see which metrics are most valuable for your needs.

As with any new tool, there will likely be a learning curve as you incorporate these features into your workflow.


FAQ

What is the “Plot Rows” feature in Google Analytics?

The “Plot Rows” feature allows you to visualize up to five rows of data at the same time. This makes it easier to compare different metrics side by side within your reports, facilitating quick comparisons and trend analysis. To use this feature, select the desired rows and click the “Plot Rows” option.

How does the new anomaly detection system work in Google Analytics?

Google Analytics’ new anomaly detection system automatically flags unusual data patterns. This tool helps identify potential issues or opportunities by spotting unexpected traffic spikes, sudden drops, or other notable trends, making it easier for users to focus on significant data fluctuations.

What improvements have been made to the Transactions report in Google Analytics?

The enhanced Transactions report provides detailed insights into revenue for ecommerce businesses. It utilizes the transaction_id parameter to offer granular information about each transaction, helping businesses get a better understanding of their revenue streams.


Featured Image: Vladimka production/Shutterstock

Mediavine Bans Publisher For Overuse Of AI-Generated Content via @sejournal, @MattGSouthern

According to details surfacing online, ad management firm Mediavine is terminating publishers’ accounts for overusing AI.

Mediavine is a leading ad management company providing products and services to help website publishers monetize their content.

The company holds elite status as a Google Certified Publishing Partner, which indicates that it meets Google’s highest standards and requirements for ad networks and exchanges.

AI Content Triggers Account Terminations

The terminations came to light in a post on the Reddit forum r/Blogging, where a user shared an email they received from Mediavine citing “overuse of artificially created content.”

Trista Jensen, Mediavine’s Director of Ad Operations & Market Quality, states in the email:

“Our third party content quality tools have flagged your sites for overuse of artificially created content. Further internal investigation has confirmed those findings.”

Jensen stated that due to the overuse of AI content, “our top partners will stop spending on your sites, which will negatively affect future monetization efforts.”

Consequently, Mediavine terminated the publisher’s account “effective immediately.”

The Risks Of Low-Quality AI Content

This strict enforcement aligns with Mediavine’s publicly stated policy prohibiting websites from using “low-quality, mass-produced, unedited or undisclosed AI content that is scraped from other websites.”

In a March 7 blog post titled “AI and Our Commitment to a Creator-First Future,” the company declared opposition to low-value AI content that could “devalue the contributions of legitimate content creators.”

Mediavine warned in the post:

“Without publishers, there is no open web. There is no content to train the models that power AI. There is no internet.”

The company says it’s using its platform to “advocate for publishers” and uphold quality standards in the face of AI’s disruptive potential.

Mediavine states:

“We’re also developing faster, automated tools to help us identify low-quality, mass-produced AI content across the web.”

Targeting ‘AI Clickbait Kingpin’ Tactics

While the Reddit user’s identity wasn’t disclosed, the incident has drawn connections to the tactics of Nebojša Vujinović Vujo, who was dubbed an “AI Clickbait Kingpin” in a recent Wired exposé.

According to Wired, Vujo acquired over 2,000 dormant domains and populated them with AI-generated, search-optimized content designed purely to capture ad revenue.

His strategies represent the low-quality, artificial content Mediavine has vowed to prohibit.

Potential Implications

Lost Revenue

Mediavine’s terminations highlight potential implications for publishers that rely on artificial intelligence to generate website content at scale.

Perhaps the most immediate and tangible implication is the risk of losing ad revenue.

For publishers that depend heavily on programmatic advertising or sponsored content deals as key revenue drivers, being blocked from major ad networks could devastate their business models.

Devalued Domains

Another potential impact is the devaluation of domains and websites built primarily on AI-generated content.

If this pattern of AI content overuse triggers account terminations from companies like Mediavine, it could drastically diminish the value proposition of scooping up these domains.

Damaged Reputations & Brands

Beyond the lost monetization opportunities, publishers leaning too heavily into automated AI content also risk permanent reputational damage to their brands.

Once a determining authority flags a website for AI overuse, it could impact how that site is perceived by readers, other industry partners, and search engines.

In Summary

AI has value as an assistive tool for publishers, but relying heavily on automated content creation poses significant risks.

These include monetization challenges, potential reputation damage, and increasing regulatory scrutiny. Mediavine’s strict policy illustrates the possible consequences for publishers.

It’s important to note that Mediavine’s move to terminate publisher accounts over AI content overuse represents an independent policy stance taken by the ad management firm itself.

The action doesn’t directly reflect the content policies or enforcement positions of Google, whose publishing partner program Mediavine is certified under.

We have reached out to Mediavine requesting a comment on this story. We’ll update this article with more information when it’s provided.


Featured Image: Simple Line/Shutterstock