Hi, I just experienced this and checked the Dries profile listed as an example
http://www.google.com/webmasters/tools/richsnippets?url=http%3A%2F%2Fsch...
The image is not showing as well.

CommentFileSizeAuthor
#4 Untitled-1.png15.16 KBtimofey

Comments

scor’s picture

yes, it seems Google changed the layout for the person Rich Snippet to not display the picture. Note that this is consistent with the "People" example on the testing tool.

timofey’s picture

It looks like all of the scheme: need to be replaced with v:

scor’s picture

Title: image property not displayed correctly in google testing tool » image not displayed in google testing tool for Person
Status: Active » Closed (works as designed)

I've tried using v: instead of schema: but that does not make any difference for the person rich snippet, the image is not displayed no matter what. This is change Google made in their policy for Person rich snippet, not to display the image (however sad that is). I'm closing this issue (pertaining to the person image) since their is nothing we can do to fix that, since that functionality is not supported by Google, and our markup is correct. It's the best we can do.

timofey’s picture

Status: Closed (works as designed) » Active
StatusFileSize
new15.16 KB

Apologies for reopening the topic. To duplicate the issue, try pasting the following into

Google's Data Testing Tool http://www.google.com/webmasters/tools/richsnippets

<div xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Recipe">
   <h1 property="v:name">Grandma's Holiday Apple Pie</h1>
   <span rel="v:photo"/>
     <img src="apple-pie.jpg"/>
   </span>
   By <span property="v:author">Carol Smith</span>
   Published: <span property="v:published" content="2009-11-05">November 5, 2009</span>
   <span property="v:summary">This is my grandmother's apple pie recipe. I like to add a dash of nutmeg.</span>
   Prep time: <span property="v:prepTime" content="PT30M">30 min</span>
   Cook time: <span property="v:cookTime" content="PT1H">1 hour</span>
   Total time: <span property="v:totalTime" content="PT1H30M">1 hour 30 min</span>
   Yield: <span property="v:yield">1 9" pie (8 servings)</span>
   <span rel="v:nutrition">
      <span typeof="v:Nutrition"> 
        Serving size: <span property="v:servingSize">1 medium slice</span>
        Calories per serving: <span property="v:calories">250</span>
        Fat per serving: <span property="v:fat">12g</span> 
      </span>
   </span>
</div>

and then

<div xmlns:v="http://rdf.data-vocabulary.org/#" typeof="schema:Recipe">
   <h1 property="schema:name">Grandma's Holiday Apple Pie</h1>
   <span rel="schema:photo"/>
     <img src="apple-pie.jpg"/>
   </span>
   By <span property="schema:author">Carol Smith</span>
   Published: <span property="schema:published" content="2009-11-05">November 5, 2009</span>
   <span property="schema:summary">This is my grandmother's apple pie recipe. I like to add a dash of nutmeg.</span>
   Prep time: <span property="schema:prepTime" content="PT30M">30 min</span>
   Cook time: <span property="schema:cookTime" content="PT1H">1 hour</span>
   Total time: <span property="schema:totalTime" content="PT1H30M">1 hour 30 min</span>
   Yield: <span property="schema:yield">1 9" pie (8 servings)</span>
   <span rel="schema:nutrition">
      <span typeof="schema:Nutrition"> 
        Serving size: <span property="schema:servingSize">1 medium slice</span>
        Calories per serving: <span property="schema:calories">250</span>
        Fat per serving: <span property="schema:fat">12g</span> 
      </span>
   </span>
</div>

The latter code uses schema: and does not show images, where as the first uses v: and displays an image.

image

Pls’s picture

timofey, you are testing Recipe type, we are now only talking about Person type.

Apparently, google has made drastic change to search results Person type to promote Google+ and there is some way to get it working (of course you have to have google+ profile for that) - http://www.bestrank.com/blog/the-trick-to-getting-your-rich-snippet-auth...

scor’s picture

Status: Active » Closed (works as designed)

@timofey could you post your findings in #1811750: Recipe rich snippet no longer working please?