Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7512275
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T23:48:52+00:00 2026-05-29T23:48:52+00:00

So, I have the code below which works fine when entered into Google’s Rich

  • 0

So, I have the code below which works fine when entered into Google’s Rich Snippet Testing Tool. The problem is that I don’t need the Venue Name linked to any url. However, when I take out the a tag and simplify that line to just <span itemprop="name">Venue Name</span>, the test tool tells me that the page doesn’t contain any rich snippet markup. Furthermore, it gives off a warning like this:

Warning: Event urls are pointing to a different domain than the base url.

Is there a way to not have the name of the venue linked to anything?

Basically, I just want the result to look like this (with only the ‘buy tickets’ part linked):

Feb 2 — Phoenix, AZ – Crescent Ballroom – Buy tickets

I have uploaded the html file that I am testing with and entering into the test tool here.

<div itemscope itemtype="http://schema.org/MusicGroup">

<h1 itemprop="name">Name</h1>

<div itemprop="events" itemscope itemtype="http://schema.org/Event">
  <meta itemprop="startDate" content="2012-02-02">Date &mdash; 
  <span itemprop="location">City, State</span> - 
  <a href="/tour" itemprop="url">
    <span itemprop="name">Venue Name</span>
  </a> - 
  <a href="http://ticketlink.com" itemprop="offers">Buy tickets</a>
</div>

</div>

2/16 – updated code

<div itemscope itemtype="http://schema.org/MusicEvent">

<h1 itemprop="name">Name</h1>

<div itemprop="events" itemscope itemtype="http://schema.org/Event">
  <meta itemprop="startDate" content="2012-02-02">Date &mdash; 
  <span itemprop="location" itemscope itemtype="http://schema.org/Place">
    <span itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
      <span itemprop="addressLocality">City</span>,
      <span itemprop="addressRegion">State</span>
    </span>- 
    <span itemprop="name">Venue Name</span> - 
  <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
    <a href="http://ticketlink.com" itemprop="url">Buy tickets</a>
  </div>
  </span>
</div>

</div>

2/17 – updated code

<div itemscope itemtype="http://schema.org/MusicGroup">
    <h1 itemprop="name">Name</h1>

    <div itemprop="events" itemscope itemtype="http://schema.org/MusicEvent">
      <meta itemprop="startDate" content="2012-02-02">Date &mdash; 
      <span itemprop="location" itemscope itemtype="http://schema.org/Place">
        <span itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
          <span itemprop="addressLocality">City</span>,
          <span itemprop="addressRegion">State</span>
        </span>- 
        <span itemprop="name">Venue Name</span> - 
        <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
          <a href="http://ticketlink.com" itemprop="url">Buy tickets</a>
        </div>
      </span>
    </div>
</div>

2/17 – new updated code

<div itemscope itemtype="http://schema.org/MusicGroup">
  <h1 itemprop="name">Name</h1>

  <div itemprop="events" itemscope itemtype="http://schema.org/MusicEvent">
    <meta itemprop="startDate" content="2012-02-02">Date &mdash; 
    <span itemprop="location" itemscope itemtype="http://schema.org/Place">
      <span itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
        <span itemprop="addressLocality">City</span>,
        <span itemprop="addressRegion">State</span>
      </span>- 
      <span itemprop="name">Venue Name</span> - 
    </span>
    <div itemprop="offers">
      <a href="http://ticketlink.com" itemprop="url">Buy tickets</a>
    </div>
  </div>
</div>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T23:48:54+00:00Added an answer on May 29, 2026 at 11:48 pm

    There a few things I am noticing here.

    1. Unless, I misunderstand, this is a music event, so you should probably use the more specific itemtype=”http://schema.org/MusicEvent”.

    2. The “location” itemprop also needs to be an itemtype of http://schema.org/Place or http://schema.org/PostalAddress. This will also solve your name itemprop issue. So for example:

      <span itemprop="location" itemscope itemtype="http://schema.org/Place>
        <span itemprop="address" itemscope itemtype="http://schema.org/PostalAddress>
          <span itemprop="addressLocality">City</span>,
          <span itemprop="addressRegion">State</span>
        </span>
        <span itemprop="name">Venue Name</span>
      </span>
      

      See my next point on why I left out the url itemprop.

    3. The offers property is another itemtype, so you’ll want something like this:

      <div itemprop="offers" itemscope itemtype="http://schema.org/Offer>
        <a href="http://ticketlink.com" itemprop="url">Presale tickets</a>
      </div>
      

      However, I’m not entirely sure that you can have a link to another domain in a url itemprop. This is undocumented but I’ve yet to see an example of one that does. You may need to leave out the offer itemprop and just let Google bring in ticket information from ticketlink themselves.

    4. Please see my answer to your other question about how these rich snippet links you’re trying to reproduce are actually being populated in search results.

    UPDATE: Here is the final code snippet that passes the Testing Tool

    <div itemscope itemtype="http://schema.org/MusicGroup">
      <h1 itemprop="name">Name</h1>
    
      <div itemprop="events" itemscope itemtype="http://schema.org/MusicEvent">
        <meta itemprop="startDate" content="2012-02-02">Date &mdash; 
        <span itemprop="name">Event Name</span>        
        <span itemprop="location" itemscope itemtype="http://schema.org/Place">
          <span itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
            <span itemprop="addressLocality">City</span>,
            <span itemprop="addressRegion">State</span>
          </span>- 
          <span itemprop="name">Venue Name</span> - 
        </span>
        <a href="http://ticketlink.com" itemprop="offers">Buy tickets</a>
      </div>
    </div>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a sample code snippet below which works just fine (I trimmed the
I have the code below, which works fine it can be viewed for an
I have this code below which works fine but seems unnecessary as it loops
I have the code below which works fine, but if I leave the text
I have the code below which works fine, steps through the rows pinging each
So far i have got the code below which works lovely when trying an
I have the following code which works just fine when the method is POST,
I am using PHP 5.3.6 I have the following code below. Everything works fine
I have the below SQL which works just fine: SELECT Message, CreateDate, AccountId, AlertTypeId
I have the following code which works fine however historically and again now I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.