そのため、 Google の Rich Snippet Testing Toolに入力すると正常に動作する以下のコードがあります。Venue Name
問題は、どの URL にもリンクする必要がないことです。しかし、a
タグを削除してその行を単純化して<span itemprop="name">Venue Name</span>
. さらに、次のような警告が表示されます。
Warning: Event urls are pointing to a different domain than the base url.
会場名をリンクさせないようにする方法はありますか?
基本的に、結果を次のようにしたいだけです (「チケットの購入」部分のみがリンクされています)。
2 月 2 日 — アリゾナ州フェニックス - Crescent Ballroom -チケット購入
テストに使用する html ファイルをアップロードし、ここでテスト ツールに入力しました。
<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 —
<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 - 更新されたコード
<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 —
<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 - 更新されたコード
<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 —
<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 - 新しく更新されたコード
<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 —
<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>