1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Regarding structured data ..i need help

Discussion in 'Microdata' started by seotraining93, May 19, 2016.

  1. #1
    where do i put structured data snippets code like Corporate contacts, Sitelinks search box, Company name url and logo, social profiles of an organization in website. Currently i placed in home page. but i dont know whether its the correct way or not. i have gone through with some of the corporate profiles like IBM, and google they didn't place their code in home page. Finally i want to know how to create the
    highlighted thing with red color i.e is google's profile for my companies profile Untitled.jpg
     
    seotraining93, May 19, 2016 IP
  2. fishook

    fishook Member

    Messages:
    38
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    48
  3. seotraining93

    seotraining93 Member

    Messages:
    60
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    26
    #3
    Thank you for ur answer fishook, i have gone through with that links previously, but what my concern is how to prepare that profile for my company...and where to place the code in the website
     
    seotraining93, May 20, 2016 IP
  4. fishook

    fishook Member

    Messages:
    38
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    48
    #4
    1. ) Where to place the code.
    Look Mid Page, it explains where to place the code. https://developers.google.com/search/docs/guides/intro-structured-data#common-use-cases
    There are 3 types you can use, JSON-LD, Microdata, RDFa. According to Google, it looks like JSON-LD is what it likes. Markup is placed inside a script tag in the head of the HTML page. Microdata, placed within HTML content.
    2.) How to create the code for JSON-LD http://json-ld.org/playground/
    We used it on our site to identify our company product and price. Http://Rcfishingworld.com
     
    fishook, May 20, 2016 IP
  5. seotraining93

    seotraining93 Member

    Messages:
    60
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    26
    #5
    thanks for your reply, you placed the code in the page, but social profiles and customer service snippet is not yet published in the search results. will search engine publish them in search results ? or else we write it for crawlers ? TIA
     
    seotraining93, May 21, 2016 IP
  6. Dannielaa Boysen

    Dannielaa Boysen Peon

    Messages:
    22
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    1
    #6
    Here is an some examples of code. When you understand the syntax it is very easy, also the rest of the possibilities like company info, pictures etc.:

    Company Info Example

    <script type='application/ld+json'>
    {
    "@context": "http:// www. schema .org",
    "@type": "LocalBusiness",
    "name": "Your Name",
    "url": "https:// domain.xx /",
    "logo": "https:// domain.xx /picture/logo.jpg",
    "image": "https:// domain.xx/",
    "description": "your description text",
    "priceRange": "$$",
    "address": {
    "@type": "PostalAddress",
    "streetAddress": "address",
    "addressLocality": "City",
    "addressRegion": "region",
    "postalCode": "postalcode",
    "addressCountry": "Country"
    },
    "telephone": "+1 0800 YOUR NUMBER",
    "geo": {
    "@type": "GeoCoordinates",
    "latitude": "55.0",
    "longitude": "55.0"
    },
    "openingHours": "Mo, Tu, We, Th, Fr 08:00-20:00, Sa 10:00-15:00",
    "contactPoint": {
    "@type": "ContactPoint",
    "telephone": "+1 0800 YOUR NUMBER",
    "contactType": "Sales"
    }
    }
    </script>

    Snippets Example

    <script type="application/ld+json">
    {
    "@context":" http:// schema . org",
    "@type":"ItemList",
    "itemListElement":[
    {
    "@type":"ListItem",
    "position":1,
    "url":"https:// domain. xx/page.html",
    "name":"Your snippet text"
    },
    {
    "@type":"ListItem",
    "position":2,
    "url":"https:// domain . xx/page.html",
    "name":"Your snippet text"
    }
    ]
    }
    </script>
     
    Dannielaa Boysen, Aug 13, 2018 IP