All in title...
For example in Person you've got 'adress'. Which leads to PostalAddress : how can I use 'postalCode' into Person content type ?
Any idea welcome

Comments

artatum’s picture

Still looking for a way to add nested infos like this

<div itemscope itemtype="http://schema.org/LocalBusiness">
  <h1><span itemprop="name">Beachwalk Beachwear & Giftware</span></h1>
  <span itemprop="description"> A superb collection of fine gifts and clothing
  to accent your stay in Mexico Beach.</span>
  <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
    <span itemprop="streetAddress">3102 Highway 98</span>
    <span itemprop="addressLocality">Mexico Beach</span>,
    <span itemprop="addressRegion">FL</span>
  </div>
  Phone: <span itemprop="telephone">850-648-4200</span>
</div>

Any idea welcome.

daemonchrist’s picture

Issue summary: View changes
Status: Active » Closed (fixed)

This can be achieved using field collections: https://drupal.org/project/field_collection

ianlav’s picture

I don't understand how the field_collection module can help with this nested item issue. Can somebody please elaborate? This seems like a very common thing to want to do.

Thanks